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.
84 lines
2.8 KiB
84 lines
2.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_sdk</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>ptos_sdk</name>
|
|
|
|
<description>Demo project for Spring Boot</description>
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!--cloud 工具类-->
|
|
<!-- <dependency>-->
|
|
<!-- <artifactId>cloudutil</artifactId>-->
|
|
<!-- <groupId>com.ccsens</groupId>-->
|
|
<!-- <version>1.0-SNAPSHOT</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>com.ccsensptos</groupId>
|
|
<artifactId>util</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- <!–微信工具包–>-->
|
|
<!-- <dependency>-->
|
|
<!-- <artifactId>wechatutil</artifactId>-->
|
|
<!-- <groupId>com.ccsens</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.tall_sdk.TallSdkApplication</mainClass>
|
|
<!–<skip>true</skip>–>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>-->
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
</project>
|
|
|