<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-protocol-sdk</artifactId>
|
<version>4.0.0-RELEASE</version>
|
<packaging>jar</packaging>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<java.version>1.8</java.version>
|
<igds.version>4.0.0-RELEASE</igds.version>
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.6</version>
|
</dependency>
|
|
|
<!-- 出入库模块 -->
|
<dependency>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-inout</artifactId>
|
<version>${igds.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-fileupload</groupId>
|
<artifactId>commons-fileupload</artifactId>
|
<version>1.3.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>javax.servlet-api</artifactId>
|
<version>3.1.0</version>
|
<scope>provided</scope>
|
</dependency>
|
|
|
<dependency>
|
<groupId>com.sun.jna</groupId>
|
<artifactId>examples</artifactId>
|
<version>3.0.9</version>
|
<scope>system</scope>
|
<systemPath>${project.basedir}/src/main/resources/lib/examples.jar</systemPath>
|
</dependency>
|
|
<!-- <dependency>-->
|
<!-- <groupId>com.sun.jna</groupId>-->
|
<!-- <artifactId>jna</artifactId>-->
|
<!-- <version>3.0.5</version>-->
|
<!-- <scope>system</scope>-->
|
<!-- <systemPath>${project.basedir}/src/main/resources/lib/jna.jar</systemPath>-->
|
<!-- </dependency>-->
|
|
<dependency>
|
<groupId>com.sun.jna</groupId>
|
<artifactId>jna</artifactId>
|
<version>3.0.9</version>
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<configuration>
|
<source>1.8</source>
|
<target>1.8</target>
|
<compilerArguments>
|
<extdirs>src\main\webapp\WEB-INF\lib</extdirs>
|
</compilerArguments>
|
</configuration>
|
</plugin>
|
</plugins>
|
<resources>
|
<resource>
|
<directory>src/main/java</directory>
|
<includes>
|
<include>**/*.xml</include>
|
<include>**/*.js</include>
|
</includes>
|
<filtering>true</filtering>
|
</resource>
|
<resource>
|
<directory>src/main/resources</directory>
|
</resource>
|
</resources>
|
</build>
|
|
</project>
|