137 lines
4.8 KiB
XML
137 lines
4.8 KiB
XML
|
|
<?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>system</artifactId>
|
||
|
|
<groupId>com.njcn</groupId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<artifactId>pqs9900</artifactId>
|
||
|
|
<packaging>war</packaging>
|
||
|
|
|
||
|
|
<name>pqs9900 Maven Webapp</name>
|
||
|
|
<url>http://www.example.com</url>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<!--项目建设环境编码格式 -->
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.njcn</groupId>
|
||
|
|
<artifactId>comService</artifactId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- spring用到的包 *********startTime********* -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.websocket</groupId>
|
||
|
|
<artifactId>javax.websocket-api</artifactId>
|
||
|
|
<version>1.1</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.quartz-scheduler</groupId>
|
||
|
|
<artifactId>quartz</artifactId>
|
||
|
|
<version>2.3.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax</groupId>
|
||
|
|
<artifactId>javaee-api</artifactId>
|
||
|
|
<version>7.0</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<!-- Java调用Kafka -->
|
||
|
|
<!-- https://mvnrepository.com/artifact/org.apache.kafka/kafka_2.12 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.kafka</groupId>
|
||
|
|
<artifactId>kafka_2.12</artifactId>
|
||
|
|
<version>1.1.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.poi</groupId>
|
||
|
|
<artifactId>poi</artifactId>
|
||
|
|
<version>3.17</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>commons-codec</artifactId>
|
||
|
|
<groupId>commons-codec</groupId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.poi</groupId>
|
||
|
|
<artifactId>poi-ooxml</artifactId>
|
||
|
|
<version>3.17</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 文件上传、下载 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-fileupload</groupId>
|
||
|
|
<artifactId>commons-fileupload</artifactId>
|
||
|
|
<version>1.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.websocket</groupId>
|
||
|
|
<artifactId>javax.websocket-api</artifactId>
|
||
|
|
<version>1.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>easyexcel</artifactId>
|
||
|
|
<version>2.2.6</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>junit</groupId>
|
||
|
|
<artifactId>junit</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>dom4j</groupId>
|
||
|
|
<artifactId>dom4j</artifactId>
|
||
|
|
<version>1.6.1</version>
|
||
|
|
</dependency>
|
||
|
|
<!--邮件发送-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-email</artifactId>
|
||
|
|
<version>1.5</version>
|
||
|
|
</dependency>
|
||
|
|
<!--判断上传文件的编码格式-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.googlecode.juniversalchardet</groupId>
|
||
|
|
<artifactId>juniversalchardet</artifactId>
|
||
|
|
<version>1.0.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<!--编译文件指定jdk-->
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>2.3.2</version>
|
||
|
|
<configuration>
|
||
|
|
<source>1.8</source>
|
||
|
|
<target>1.8</target>
|
||
|
|
<encoding>UTF-8</encoding>
|
||
|
|
<compilerArguments>
|
||
|
|
<verbose />
|
||
|
|
<bootclasspath>C:\JAVA\jdk\jre\lib\rt.jar;C:\JAVA\jre\lib\jce.jar</bootclasspath>
|
||
|
|
</compilerArguments>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
|
<version>2.14.1</version>
|
||
|
|
<configuration>
|
||
|
|
<skipTests>true</skipTests>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
<defaultGoal>install</defaultGoal>
|
||
|
|
</build>
|
||
|
|
</project>
|