299 lines
7.8 KiB
XML
299 lines
7.8 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">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<groupId>com.tky</groupId>
|
||
<artifactId>ndplan</artifactId>
|
||
<packaging>war</packaging>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
<name>yard Maven Webapp</name>
|
||
<url>http://maven.apache.org</url>
|
||
|
||
|
||
<parent>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>2.2.2.RELEASE</version>
|
||
<relativePath/> <!-- lookup parent from repository -->
|
||
</parent>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
<java.version>1.8</java.version>
|
||
</properties>
|
||
|
||
|
||
<dependencies>
|
||
<!-- springboot jar start -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.junit.vintage</groupId>
|
||
<artifactId>junit-vintage-engine</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-jdbc</artifactId>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.apache.tomcat</groupId>
|
||
<artifactId>tomcat-jdbc</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<!-- 测试相关 -->
|
||
<dependency>
|
||
<groupId>org.springframework.restdocs</groupId>
|
||
<artifactId>spring-restdocs-mockmvc</artifactId>
|
||
<version>2.0.4.RELEASE</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.junit.platform</groupId>
|
||
<artifactId>junit-platform-launcher</artifactId>
|
||
<version>1.5.2</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<!-- 测试相关 -->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
|
||
<!-- 保存自动编译jar start -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-devtools</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
<!-- 保存自动编译jar end -->
|
||
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-aop</artifactId>
|
||
</dependency>
|
||
<!-- springboot jar end -->
|
||
|
||
|
||
<!-- tomcat发布war包时用start -->
|
||
<dependency>
|
||
<groupId>org.apache.tomcat.embed</groupId>
|
||
<artifactId>tomcat-embed-jasper</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>jstl</artifactId>
|
||
<version>1.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.taglibs</groupId>
|
||
<artifactId>taglibs-standard-impl</artifactId>
|
||
<version>1.2.5</version>
|
||
</dependency>
|
||
<!-- tomcat发布war包时用end -->
|
||
|
||
<!-- 连接池start -->
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>druid</artifactId>
|
||
<version>1.0.19</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>c3p0</groupId>
|
||
<artifactId>c3p0</artifactId>
|
||
<version>0.9.1.2</version>
|
||
</dependency>
|
||
<!-- 连接池end -->
|
||
|
||
<!-- mysql -->
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<version>5.1.22</version>
|
||
</dependency>
|
||
<!-- <dependency>
|
||
<groupId>com.microsoft.sqlserver</groupId>
|
||
<artifactId>mssql-jdbc</artifactId>
|
||
<scope>runtime</scope>
|
||
</dependency> -->
|
||
<!-- 整合redis -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.liferay</groupId>
|
||
<artifactId>org.apache.commons.fileupload</artifactId>
|
||
<version>1.2.2.LIFERAY-PATCHED-1</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>commons-io</groupId>
|
||
<artifactId>commons-io</artifactId>
|
||
<version>2.6</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-pool2</artifactId>
|
||
<version>2.4.2</version>
|
||
</dependency>
|
||
|
||
|
||
<!-- 工具类start -->
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-lang3</artifactId>
|
||
<version>3.5</version>
|
||
</dependency>
|
||
<!-- 工具类end -->
|
||
|
||
<!-- httpClient -->
|
||
<dependency>
|
||
<groupId>org.apache.httpcomponents</groupId>
|
||
<artifactId>httpclient</artifactId>
|
||
<version>4.2.5</version>
|
||
</dependency>
|
||
|
||
<!-- fastjson -->
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>1.1.33</version>
|
||
</dependency>
|
||
|
||
<!-- gson -->
|
||
<dependency>
|
||
<groupId>com.google.code.gson</groupId>
|
||
<artifactId>gson</artifactId>
|
||
<version>2.6.1</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.quartz-scheduler</groupId>
|
||
<artifactId>quartz</artifactId>
|
||
<version>2.2.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-context-support</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-ws</artifactId>
|
||
<version>1.4.6.RELEASE</version>
|
||
</dependency>
|
||
|
||
<!-- <dependency>
|
||
<groupId>wsdl4j</groupId>
|
||
<artifactId>wsdl4j</artifactId>
|
||
</dependency> -->
|
||
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
<version>4.0.12</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.hibernate</groupId>
|
||
<artifactId>hibernate-jpamodelgen</artifactId>
|
||
</dependency>
|
||
|
||
<!-- swaggerui相关依赖 -->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger2</artifactId>
|
||
<version>2.9.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger-ui</artifactId>
|
||
<version>2.9.2</version>
|
||
</dependency>
|
||
|
||
|
||
<!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
|
||
<dependency>
|
||
<groupId>commons-beanutils</groupId>
|
||
<artifactId>commons-beanutils</artifactId>
|
||
<version>1.8.3</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>commons-httpclient</groupId>
|
||
<artifactId>commons-httpclient</artifactId>
|
||
<version>3.1</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>com.tky</groupId> <!--自定义-->
|
||
<artifactId>oracleDriver</artifactId> <!--自定义-->
|
||
<version>1.0</version> <!--自定义-->
|
||
<scope>system</scope> <!--system,类似provided,需要显式提供依赖的jar以后,Maven就不会在Repository中查找它-->
|
||
<systemPath>${basedir}/src/main/resources/ojdbc14-10.2.0.2.0.jar</systemPath> <!--项目根目录下的lib文件夹下-->
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.hikvision.ga</groupId>
|
||
<artifactId>artemis-http-client</artifactId>
|
||
<version>1.1.2</version>
|
||
</dependency>
|
||
|
||
|
||
<!-- <dependency>
|
||
<groupId>com.univocity</groupId>
|
||
<artifactId>univocity-parsers</artifactId>
|
||
<version>2.5.9</version>
|
||
</dependency> -->
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>
|
||
spring-boot-configuration-processor
|
||
</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
<!-- <build>
|
||
<finalName>yard</finalName>
|
||
</build> -->
|
||
</project>
|