123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?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>game-module</artifactId>
- <groupId>com.zanxiang.game</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>game-sdk</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.zanxiang.game</groupId>
- <artifactId>game-common</artifactId>
- <version>${game-common.vertion}</version>
- </dependency>
- <dependency>
- <groupId>com.zanxiang.game</groupId>
- <artifactId>game-common-redis</artifactId>
- <version>${game-common-redis.vertion}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zanxiangnet.module</groupId>
- <artifactId>zx-sms</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <!-- 解决validated不生效的依赖问题 -->
- <dependency>
- <groupId>org.hibernate.validator</groupId>
- <artifactId>hibernate-validator</artifactId>
- <version>6.0.17.Final</version>
- <scope>compile</scope>
- </dependency>
- <!-- 支付相关pom -->
- <dependency>
- <groupId>com.alipay.sdk</groupId>
- <artifactId>alipay-easysdk</artifactId>
- <version>2.1.0</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>dom4j</groupId>-->
- <!-- <artifactId>dom4j</artifactId>-->
- <!-- <version>1.6.1</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>jdom</groupId>
- <artifactId>jdom</artifactId>
- <version>1.1</version>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>javase</artifactId>
- <version>3.4.1</version>
- </dependency>
- <dependency>
- <groupId>com.github.liyiorg</groupId>
- <artifactId>weixin-popular</artifactId>
- <version>2.8.16</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-bootstrap</artifactId>
- <version>3.0.2</version>
- </dependency>
- </dependencies>
- </project>
|