123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.starbuds.server</groupId>
- <artifactId>service-user</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <parent>
- <groupId>com.starbuds.server</groupId>
- <artifactId>service-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
- <properties>
- <ons-client.version>1.8.4.Final</ons-client.version>
- <alipay-sdk-java.version>4.8.73.ALL</alipay-sdk-java.version>
- </properties>
- <dependencies>
- <!-- 阿里云实人认证 -->
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-core</artifactId>
- <version>4.4.6</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-cloudauth</artifactId>
- <version>2.0.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-dypnsapi</artifactId>
- <version>1.0.4</version>
- </dependency>
- <!-- jpa -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-jpa</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.dyuproject.protostuff/protostuff-core -->
- <dependency>
- <groupId>com.dyuproject.protostuff</groupId>
- <artifactId>protostuff-core</artifactId>
- <version>1.1.5</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.dyuproject.protostuff/protostuff-runtime -->
- <dependency>
- <groupId>com.dyuproject.protostuff</groupId>
- <artifactId>protostuff-runtime</artifactId>
- <version>1.1.5</version>
- </dependency>
- <!-- Aliyun ONS -->
- <dependency>
- <groupId>com.aliyun.openservices</groupId>
- <artifactId>ons-client</artifactId>
- <version>${ons-client.version}</version>
- </dependency>
- <!-- 支付宝 SDK -->
- <dependency>
- <groupId>com.alipay.sdk</groupId>
- <artifactId>alipay-sdk-java</artifactId>
- <version>${alipay-sdk-java.version}</version>
- </dependency>
- <!-- 验证Url https://mvnrepository.com/artifact/commons-validator/commons-validator -->
- <dependency>
- <groupId>commons-validator</groupId>
- <artifactId>commons-validator</artifactId>
- <version>1.6</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.github.javafaker/javafaker -->
- <dependency>
- <groupId>com.github.javafaker</groupId>
- <artifactId>javafaker</artifactId>
- <version>1.0.2</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.artifactId}</finalName>
- </build>
- </project>
|