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.
76 lines
2.7 KiB
76 lines
2.7 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">
|
|
|
|
<parent>
|
|
<artifactId>ccsensptos</artifactId>
|
|
<groupId>com.ccsensptos</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>util_wechat</artifactId>
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!--cloud 工具类-->
|
|
<!--<dependency>
|
|
<artifactId>cloudutil</artifactId>
|
|
<groupId>com.ccsensptos</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>-->
|
|
<!--util 工具类-->
|
|
<dependency>
|
|
<artifactId>util</artifactId>
|
|
<groupId>com.ccsensptos</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!--微信v3支付-->
|
|
<dependency>
|
|
<groupId>com.github.wechatpay-apiv3</groupId>
|
|
<artifactId>wechatpay-apache-httpclient</artifactId>
|
|
<version>0.2.2</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.wechatutil.WechatutilApplication</mainClass>
|
|
<!–<skip>true</skip>–>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>-->
|
|
|
|
</project>
|
|
|