153 lines
4.1 KiB
XML
153 lines
4.1 KiB
XML
|
|
<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.imxss</groupId>
|
||
|
|
<artifactId>imxss</artifactId>
|
||
|
|
<packaging>war</packaging>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<name>imxss</name>
|
||
|
|
<url>http://maven.apache.org</url>
|
||
|
|
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<spring.version>5.0.8.RELEASE</spring.version>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-tx</artifactId>
|
||
|
|
<version>${spring.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-jdbc</artifactId>
|
||
|
|
<version>${spring.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-aspects</artifactId>
|
||
|
|
<version>${spring.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-webmvc</artifactId>
|
||
|
|
<version>${spring.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-test</artifactId>
|
||
|
|
<version>${spring.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>log4j</groupId>
|
||
|
|
<artifactId>log4j</artifactId>
|
||
|
|
<version>1.2.17</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
<version>1.2.31</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.mchange</groupId>
|
||
|
|
<artifactId>c3p0</artifactId>
|
||
|
|
<version>0.9.2.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<version>8.0.15</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-servlet-api -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.tomcat</groupId>
|
||
|
|
<artifactId>tomcat-servlet-api</artifactId>
|
||
|
|
<version>9.0.8</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sun.mail</groupId>
|
||
|
|
<artifactId>javax.mail</artifactId>
|
||
|
|
<version>1.5.6</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>jstl</groupId>
|
||
|
|
<artifactId>jstl</artifactId>
|
||
|
|
<version>1.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.fusesource</groupId>
|
||
|
|
<artifactId>sigar</artifactId>
|
||
|
|
<version>1.6.4</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/com.drewnoakes/metadata-extractor -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.drewnoakes</groupId>
|
||
|
|
<artifactId>metadata-extractor</artifactId>
|
||
|
|
<version>2.12.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-fileupload</groupId>
|
||
|
|
<artifactId>commons-fileupload</artifactId>
|
||
|
|
<version>1.2.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-io</groupId>
|
||
|
|
<artifactId>commons-io</artifactId>
|
||
|
|
<version>2.5</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.ant</groupId>
|
||
|
|
<artifactId>ant</artifactId>
|
||
|
|
<version>1.9.4</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- https://mvnrepository.com/artifact/io.protostuff/protostuff-core -->
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
<build>
|
||
|
|
<finalName>imxss</finalName>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
|
<version>2.4</version>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.1</version>
|
||
|
|
<configuration>
|
||
|
|
<source>1.8</source>
|
||
|
|
<target>1.8</target>
|
||
|
|
<encoding>utf8</encoding>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<skip>true</skip>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
<pluginRepositories>
|
||
|
|
<pluginRepository>
|
||
|
|
<id>public</id>
|
||
|
|
<name>aliyun nexus</name>
|
||
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
||
|
|
<releases>
|
||
|
|
<enabled>true</enabled>
|
||
|
|
</releases>
|
||
|
|
<snapshots>
|
||
|
|
<enabled>false</enabled>
|
||
|
|
</snapshots>
|
||
|
|
</pluginRepository>
|
||
|
|
</pluginRepositories>
|
||
|
|
</project>
|