<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<groupId>com.qianwen</groupId>
|
<artifactId>qianwen-license</artifactId>
|
<version>1.0.0</version>
|
<packaging>pom</packaging>
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.3.12.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
|
|
<modules>
|
<module>license-common</module>
|
<module>license-server</module>
|
<module>license-client-demo</module>
|
|
</modules>
|
|
<dependencyManagement>
|
<dependencies>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
<version>2.3.12.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>org.junit.jupiter</groupId>
|
<artifactId>junit-jupiter</artifactId>
|
<version>5.6.3</version>
|
</dependency>
|
<dependency>
|
<groupId>org.jmockit</groupId>
|
<artifactId>jmockit</artifactId>
|
<version>1.49</version>
|
<scope>test</scope>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
|
<dependency>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-api</artifactId>
|
<version>1.7.30</version>
|
</dependency>
|
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>3.3.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.75</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.h2database</groupId>
|
<artifactId>h2</artifactId>
|
<version>2.2.224</version>
|
</dependency>
|
|
</dependencies>
|
</dependencyManagement>
|
</project>
|