95 lines
3.2 KiB
XML
95 lines
3.2 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/maven-v4_0_0.xsd">
|
||
|
|
<parent>
|
||
|
|
<artifactId>system</artifactId>
|
||
|
|
<groupId>com.njcn</groupId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<artifactId>pqs9200</artifactId>
|
||
|
|
<packaging>war</packaging>
|
||
|
|
<name>pqs9200 Maven Webapp</name>
|
||
|
|
<url>http://maven.apache.org</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>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.poi</groupId>
|
||
|
|
<artifactId>poi-ooxml</artifactId>
|
||
|
|
<version>3.17</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<!-- Java调用Kafka -->
|
||
|
|
<!-- https://mvnrepository.com/artifact/org.apache.kafka/kafka_2.11 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.kafka</groupId>
|
||
|
|
<artifactId>kafka_2.12</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 文件上传、下载 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-fileupload</groupId>
|
||
|
|
<artifactId>commons-fileupload</artifactId>
|
||
|
|
<version>1.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax</groupId>
|
||
|
|
<artifactId>javaee-api</artifactId>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</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>
|
||
|
|
<resources>
|
||
|
|
<resource>
|
||
|
|
<directory>src/main/java</directory>
|
||
|
|
<includes>
|
||
|
|
<include>**/*.ftl</include>
|
||
|
|
</includes>
|
||
|
|
</resource>
|
||
|
|
<resource>
|
||
|
|
<directory>src/main/resources</directory>
|
||
|
|
<includes>
|
||
|
|
<include>**/*</include>
|
||
|
|
</includes>
|
||
|
|
</resource>
|
||
|
|
</resources>
|
||
|
|
</build>
|
||
|
|
</project>
|