218 lines
7.4 KiB
XML
218 lines
7.4 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>pqs9300</artifactId>
|
||
<packaging>war</packaging>
|
||
|
||
<name>pqs9300 Maven Webapp</name>
|
||
<!-- FIXME change it to the project's website -->
|
||
<url>http://www.example.com</url>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<maven.compiler.source>1.7</maven.compiler.source>
|
||
<maven.compiler.target>1.7</maven.compiler.target>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.njcn</groupId>
|
||
<artifactId>comService</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi</artifactId>
|
||
<version>3.11</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
<version>3.11</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>
|
||
<version>1.1.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.websocket</groupId>
|
||
<artifactId>javax.websocket-api</artifactId>
|
||
<version>1.1</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax</groupId>
|
||
<artifactId>javaee-api</artifactId>
|
||
<version>7.0</version>
|
||
<scope>compile</scope>
|
||
</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.4</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-svggen</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-awt-util</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-bridge</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-css</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-dom</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-gvt</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-parser</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-script</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-svg-dom</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-transcoder</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-util</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>batik</groupId>
|
||
<artifactId>batik-xml</artifactId>
|
||
<version>1.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.xmlgraphics</groupId>
|
||
<artifactId>batik-codec</artifactId>
|
||
<version>1.7</version>
|
||
</dependency>
|
||
<!-- 此处不能使用2.9.1版本,使用2.9.1生成png会失败 -->
|
||
<dependency>
|
||
<groupId>xerces</groupId>
|
||
<artifactId>xercesImpl</artifactId>
|
||
<version>2.5.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>xml-apis</groupId>
|
||
<artifactId>xmlParserAPIs</artifactId>
|
||
<version>2.0.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.axsl.org.w3c.dom.svg</groupId>
|
||
<artifactId>svg-dom-java</artifactId>
|
||
<version>1.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>xml-apis</groupId>
|
||
<artifactId>xml-apis</artifactId>
|
||
<version>2.0.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.w3c.css</groupId>
|
||
<artifactId>sac</artifactId>
|
||
<version>1.3</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>easyexcel</artifactId>
|
||
<version>1.1.0</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
<version>4.5.7</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<finalName>pqs9300</finalName>
|
||
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
|
||
<plugins>
|
||
<plugin>
|
||
<artifactId>maven-clean-plugin</artifactId>
|
||
<version>3.1.0</version>
|
||
</plugin>
|
||
<!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
|
||
<plugin>
|
||
<artifactId>maven-resources-plugin</artifactId>
|
||
<version>3.0.2</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.8.0</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
<version>2.22.1</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-war-plugin</artifactId>
|
||
<version>3.2.2</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-install-plugin</artifactId>
|
||
<version>2.5.2</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-deploy-plugin</artifactId>
|
||
<version>2.8.2</version>
|
||
</plugin>
|
||
</plugins>
|
||
</pluginManagement>
|
||
</build>
|
||
</project>
|