pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. <artifactId>game-mybatis</artifactId>
  15. <groupId>com.zanxiang.game</groupId>
  16. <version>0.0.1-SNAPSHOT</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.zanxiang.module</groupId>
  29. <artifactId>zx-sms</artifactId>
  30. <version>1.0.0-SNAPSHOT</version>
  31. </dependency>
  32. <!-- 支付相关pom -->
  33. <dependency>
  34. <groupId>com.alipay.sdk</groupId>
  35. <artifactId>alipay-easysdk</artifactId>
  36. <version>2.1.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>jdom</groupId>
  40. <artifactId>jdom</artifactId>
  41. <version>1.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.google.zxing</groupId>
  45. <artifactId>javase</artifactId>
  46. <version>3.4.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.github.liyiorg</groupId>
  50. <artifactId>weixin-popular</artifactId>
  51. <version>2.8.16</version>
  52. </dependency>
  53. <!-- 谷歌http工具类 -->
  54. <dependency>
  55. <groupId>cn.hutool</groupId>
  56. <artifactId>hutool-all</artifactId>
  57. <version>5.8.0.M1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.cloud</groupId>
  61. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  62. <version>3.0.2</version>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-compiler-plugin</artifactId>
  70. <version>3.1</version>
  71. <configuration>
  72. <source>8</source>
  73. <target>8</target>
  74. <encoding>${project.build.sourceEncoding}</encoding>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-maven-plugin</artifactId>
  80. <version>2.5.14</version>
  81. <configuration>
  82. <includeSystemScope>true</includeSystemScope>
  83. </configuration>
  84. <executions>
  85. <execution>
  86. <goals>
  87. <goal>repackage</goal>
  88. </goals>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>