123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?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>toktok-parent</artifactId>
- <groupId>com.sp.toktok</groupId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>toktok-core</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.github.wechatpay-apiv3</groupId>
- <artifactId>wechatpay-java</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sp.toktok-parent</groupId>
- <artifactId>sp-manager-pay-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sp.toktok-parent</groupId>
- <artifactId>sp-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sp.toktok-parent</groupId>
- <artifactId>sp-module-account-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sp.toktok-parent</groupId>
- <artifactId>sp-manager-realname-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sp.toktok-parent</groupId>
- <artifactId>sp-manager-pay-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sp.toktok-parent</groupId>
- <artifactId>sp-manager-push-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alipay.api</groupId>
- <artifactId>alipay-pay-system</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${pom.basedir}/lib/alipay-sdk-java-3.3.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.sf.csim</groupId>
- <artifactId>SF-CSIM-EXPRESS</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${pom.basedir}/lib/SF-CSIM-EXPRESS-SDK-V2.1.7.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.sp.toktok-parent</groupId>
- <artifactId>sp-manager-im-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sp.toktok-parent</groupId>
- <artifactId>sp-manager-oss-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sp.toktok-parent</groupId>
- <artifactId>sp-manager-third-aliyun-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp</artifactId>
- <version>3.8.1</version>
- </dependency>
- <dependency>
- <groupId>com.jthinking.common</groupId>
- <artifactId>ip-info</artifactId>
- </dependency>
- </dependencies>
- </project>
|