1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?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.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.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.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>
|