<?xml version="1.0" encoding="UTF-8"?>
|
<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>
|
<parent>
|
<groupId>com.qianwen</groupId>
|
<artifactId>qianwen-license</artifactId>
|
<version>1.0.0</version>
|
</parent>
|
|
<artifactId>license-server</artifactId>
|
|
<name>license-server</name>
|
<description>license-server</description>
|
<url/>
|
<licenses>
|
<license/>
|
</licenses>
|
<developers>
|
<developer/>
|
</developers>
|
<scm>
|
<connection/>
|
<developerConnection/>
|
<tag/>
|
<url/>
|
</scm>
|
<properties>
|
<java.version>1.8</java.version>
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-core</artifactId>
|
<version>5.7.18</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/cn.hutool/hutool-crypto -->
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-crypto</artifactId>
|
<version>5.7.18</version>
|
</dependency>
|
|
|
<!--lincense验证-->
|
|
<dependency>
|
<groupId>de.schlichtherle.truelicense</groupId>
|
<artifactId>truelicense-core</artifactId>
|
<version>1.33</version>
|
</dependency>
|
<!--
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-jdk18on</artifactId>
|
<version>1.79</version>
|
</dependency>-->
|
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcpkix-jdk18on</artifactId>
|
<version>1.79</version>
|
</dependency>
|
<!--<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-ext-jdk18on</artifactId>
|
<version>1.78.1</version>
|
</dependency>
|
-->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>license-common</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.h2database</groupId>
|
<artifactId>h2</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
</dependency>
|
</dependencies>
|
|
<repositories>
|
<repository>
|
<id>huaweicloud</id>
|
<url>https://mirrors.huaweicloud.com/repository/maven/</url>
|
</repository>
|
</repositories>
|
<pluginRepositories>
|
<pluginRepository>
|
<id>huaweicloud</id>
|
<url>https://mirrors.huaweicloud.com/repository/maven/</url>
|
</pluginRepository>
|
</pluginRepositories>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<mainClass>com.qianwen.license.LicenseApplication</mainClass>
|
<layout>ZIP</layout>
|
<includes>
|
<!-- 打包时包含核心模块依赖包,需手动指定 -->
|
<!--
|
<include>
|
<groupId>nothing</groupId>
|
<artifactId>nothing</artifactId>
|
</include>
|
-->
|
</includes>
|
</configuration>
|
</plugin>
|
|
<plugin>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<configuration>
|
<source>1.8</source>
|
<target>1.8</target>
|
<encoding>UTF-8</encoding>
|
<compilerArgs>
|
<arg>-parameters</arg>
|
</compilerArgs>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|