pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>game-module</artifactId>
  7. <groupId>com.zanxiang.game</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>game-sdk</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.zanxiang.game</groupId>
  15. <artifactId>game-common</artifactId>
  16. <version>${game-common.vertion}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.zanxiang.game</groupId>
  20. <artifactId>game-common-redis</artifactId>
  21. <version>${game-common-redis.vertion}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-test</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.zanxiangnet.module</groupId>
  29. <artifactId>zx-sms</artifactId>
  30. <version>1.0.0-SNAPSHOT</version>
  31. </dependency>
  32. <!-- 解决validated不生效的依赖问题 -->
  33. <dependency>
  34. <groupId>org.hibernate.validator</groupId>
  35. <artifactId>hibernate-validator</artifactId>
  36. <version>6.0.17.Final</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. <!-- 支付相关pom -->
  40. <dependency>
  41. <groupId>com.alipay.sdk</groupId>
  42. <artifactId>alipay-easysdk</artifactId>
  43. <version>2.1.0</version>
  44. </dependency>
  45. <!-- <dependency>-->
  46. <!-- <groupId>dom4j</groupId>-->
  47. <!-- <artifactId>dom4j</artifactId>-->
  48. <!-- <version>1.6.1</version>-->
  49. <!-- </dependency>-->
  50. <dependency>
  51. <groupId>jdom</groupId>
  52. <artifactId>jdom</artifactId>
  53. <version>1.1</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.google.zxing</groupId>
  57. <artifactId>javase</artifactId>
  58. <version>3.4.1</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.github.liyiorg</groupId>
  62. <artifactId>weixin-popular</artifactId>
  63. <version>2.8.16</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.cloud</groupId>
  67. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  68. <version>3.0.2</version>
  69. </dependency>
  70. </dependencies>
  71. </project>