You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
157 lines
5.8 KiB
157 lines
5.8 KiB
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>ccsensptos</artifactId>
|
|
<groupId>com.ccsensptos</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>ptos_tall</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>ptos_tall</name>
|
|
|
|
<description>Demo project for Spring Boot</description>
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!--cloud 工具类-->
|
|
<dependency>
|
|
<artifactId>util_cloud</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
<groupId>org.bouncycastle</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>httpcore</artifactId>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>netty-all</artifactId>
|
|
<groupId>io.netty</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>httpclient</artifactId>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>jackson-dataformat-xml</artifactId>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
<groupId>com.ccsensptos</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.ccsensptos</groupId>
|
|
<artifactId>util</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>fastjson</artifactId>
|
|
<groupId>com.alibaba</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>sdk-core-java</artifactId>
|
|
<groupId>com.aliyun.api.gateway</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>bcprov-jdk14</artifactId>
|
|
<groupId>org.bouncycastle</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>bcmail-jdk14</artifactId>
|
|
<groupId>org.bouncycastle</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>httpcore</artifactId>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>netty-all</artifactId>
|
|
<groupId>io.netty</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>httpclient</artifactId>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>jackson-dataformat-xml</artifactId>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!--微信工具包-->
|
|
<dependency>
|
|
<artifactId>util_wechat</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>httpcore</artifactId>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>netty-all</artifactId>
|
|
<groupId>io.netty</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>httpclient</artifactId>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>jackson-dataformat-xml</artifactId>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
<groupId>com.ccsensptos</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.mybatis.generator</groupId>
|
|
<artifactId>mybatis-generator-maven-plugin</artifactId>
|
|
<version>1.3.7</version>
|
|
<configuration>
|
|
<configurationFile>${basedir}/src/main/resources/mbg.xml</configurationFile>
|
|
<overwrite>true</overwrite>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>5.1.34</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<mainClass>com.ccsens.ptos_tall.PtosTallApplication</mainClass>
|
|
<!--<skip>true</skip>-->
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
</project>
|
|
|