<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">
|
<modelVersion>4.0.0</modelVersion>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-base</artifactId>
|
<version>4.0.0-RELEASE</version>
|
<packaging>jar</packaging>
|
|
<parent>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-parent-pom</artifactId>
|
<version>4.0.0-RELEASE</version>
|
</parent>
|
|
<dependencies>
|
<dependency>
|
<groupId>commons-lang</groupId>
|
<artifactId>commons-lang</artifactId>
|
<version>2.6</version>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.6</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.8.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>javax.servlet-api</artifactId>
|
<version>3.1.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.13</version>
|
</dependency>
|
|
<!-- license 引入-->
|
<dependency>
|
<groupId>com.ld.license</groupId>
|
<artifactId>license-cli</artifactId>
|
<version>3.0.0-RELEASE</version>
|
<scope>system</scope>
|
<systemPath>${project.basedir}/src/main/resources/lib/license-cli-3.0.0-RELEASE.jar</systemPath>
|
</dependency>
|
<dependency>
|
<groupId>de.schlichtherle.truelicense</groupId>
|
<artifactId>truelicense-core</artifactId>
|
<version>1.33</version>
|
</dependency>
|
</dependencies>
|
|
<dependencyManagement>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-framework-bom</artifactId>
|
<version>${spring.version}</version>
|
<type>pom</type>
|
<scope>import</scope>
|
</dependency>
|
</dependencies>
|
</dependencyManagement>
|
|
</project>
|