1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>license-spring-boot</artifactId>
- <groupId>com.appleyk.spring.boot</groupId>
- <version>0.2.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <name>license-creator</name>
- <artifactId>license-creator-spring-boot-starter</artifactId>
- <version>0.2.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <description>系统软件证书生成模块,负责拉取服务器硬件信息和生成、下载lic证书文件</description>
- <dependencies>
- <!--引入Lic核心模块-->
- <dependency>
- <groupId>com.appleyk.spring.boot</groupId>
- <artifactId>license-core-spring-boot-starter</artifactId>
- <version>0.2.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.7.9</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>license-creator-spring-boot-starter</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.3</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|