<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/maven-v4_0_0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<groupId>com.moral.monitor</groupId>
|
<artifactId>task</artifactId>
|
<packaging>war</packaging>
|
<version>1.0-SNAPSHOT</version>
|
<name>task Maven Webapp</name>
|
<url>http://maven.apache.org</url>
|
|
|
<properties>
|
<springversion>4.3.7.RELEASE</springversion>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
</properties>
|
|
<repositories>
|
<repository>
|
<id>spring-libs-release</id>
|
<name>Spring Releases</name>
|
<url>https://repo.spring.io/libs-release</url>
|
<snapshots>
|
<enabled>false</enabled>
|
</snapshots>
|
</repository>
|
</repositories>
|
|
<dependencies>
|
<dependency>
|
<groupId>junit</groupId>
|
<artifactId>junit</artifactId>
|
<version>4.11</version>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-webmvc</artifactId>
|
<version>${springversion}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-jdbc</artifactId>
|
<version>${springversion}</version>
|
</dependency>
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>jstl</artifactId>
|
<version>1.2</version>
|
</dependency>
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>servlet-api</artifactId>
|
<version>2.5</version>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.7</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid</artifactId>
|
<version>1.0.18</version>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>5.1.30</version>
|
<scope>runtime</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis</artifactId>
|
<version>3.4.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis-spring</artifactId>
|
<version>1.3.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.amqp</groupId>
|
<artifactId>spring-rabbit</artifactId>
|
<version>1.6.3.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>com.rabbitmq</groupId>
|
<artifactId>amqp-client</artifactId>
|
<version>3.3.5</version>
|
</dependency>
|
<!-- logging -->
|
<dependency>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-api</artifactId>
|
<version>1.7.5</version>
|
</dependency>
|
<dependency>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-log4j12</artifactId>
|
<version>1.7.5</version>
|
</dependency>
|
<dependency>
|
|
<groupId>log4j</groupId>
|
<artifactId>log4j</artifactId>
|
<version>1.2.16</version>
|
</dependency>
|
|
|
|
|
<!-- springframe start -->
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-context-support</artifactId>
|
<version>${springversion}</version>
|
</dependency>
|
|
<!-- 阿里大于 -->
|
<dependency>
|
<groupId>javabuilder</groupId>
|
<artifactId>javabuilder</artifactId>
|
<version>1.0</version>
|
<scope>system</scope>
|
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/taobao-sdk-java-auto_1455552377940-20160607.jar</systemPath>
|
</dependency>
|
|
<dependency>
|
<groupId>net.sf.json-lib</groupId>
|
<artifactId>json-lib</artifactId>
|
<version>2.4</version>
|
<classifier>jdk15</classifier>
|
</dependency>
|
|
|
<dependency>
|
<groupId>org.json</groupId>
|
<artifactId>json</artifactId>
|
<version>20160810</version>
|
</dependency>
|
|
<!-- mail -->
|
<!-- https://mvnrepository.com/artifact/javax.mail/mail -->
|
<dependency>
|
<groupId>javax.mail</groupId>
|
<artifactId>mail</artifactId>
|
<version>1.4</version>
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/org.quartz-scheduler/quartz -->
|
<dependency>
|
<groupId>org.quartz-scheduler</groupId>
|
<artifactId>quartz</artifactId>
|
<version>2.2.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.5</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-beanutils</groupId>
|
<artifactId>commons-beanutils</artifactId>
|
<version>1.9.3</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-collections4</artifactId>
|
<version>4.1</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-logging</groupId>
|
<artifactId>commons-logging</artifactId>
|
<version>1.2</version>
|
</dependency>
|
|
<!-- 极光推送 -->
|
<dependency>
|
<groupId>cn.jpush.api</groupId>
|
<artifactId>jpush-client</artifactId>
|
<version>3.2.17</version>
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-all</artifactId>
|
<version>4.1.7.Final</version>
|
</dependency>
|
|
<!-- Redis -->
|
<dependency>
|
<groupId>org.springframework.data</groupId>
|
<artifactId>spring-data-redis</artifactId>
|
<version>1.8.7.RELEASE</version>
|
</dependency>
|
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>2.9.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-test</artifactId>
|
<version>4.1.6.RELEASE</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.39</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.data</groupId>
|
<artifactId>spring-data-mongodb</artifactId>
|
<version>2.0.0.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>net.sourceforge.jexcelapi</groupId>
|
<artifactId>jxl</artifactId>
|
<version>2.6.12</version>
|
</dependency>
|
</dependencies>
|
|
|
<build>
|
<finalName>task</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<configuration>
|
<source>1.6</source>
|
<target>1.6</target>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
<configuration>
|
<skip>true</skip>
|
</configuration>
|
</plugin>
|
<plugin>
|
<artifactId>maven-war-plugin</artifactId>
|
<version>3.0.0</version>
|
<configuration>
|
<webappDirectory>${basedir}/src/main/webapp</webappDirectory>
|
<warSourceDirectory>${basedir}/src/main/webapp</warSourceDirectory>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|