pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.api</groupId>
  6. <artifactId>parent</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <modules>
  9. <module>core</module>
  10. <module>common</module>
  11. <module>base</module>
  12. <module>games</module>
  13. <module>code-generator</module>
  14. </modules>
  15. <packaging>pom</packaging>
  16. <name>parent Maven Webapp</name>
  17. <parent>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-parent</artifactId>
  20. <version>2.1.2.RELEASE</version>
  21. </parent>
  22. <properties>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <maven.compiler.source>1.8</maven.compiler.source>
  25. <maven.compiler.target>1.8</maven.compiler.target>
  26. </properties>
  27. <dependencyManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. <version>2.1.2.RELEASE</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-security</artifactId>
  37. <version>2.1.2.RELEASE</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>io.jsonwebtoken</groupId>
  41. <artifactId>jjwt</artifactId>
  42. <version>0.9.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-data-redis</artifactId>
  47. <version>2.1.2.RELEASE</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-cache</artifactId>
  52. <version>2.1.2.RELEASE</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-devtools</artifactId>
  57. <optional>true</optional>
  58. <version>2.1.2.RELEASE</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.mybatis.spring.boot</groupId>
  62. <artifactId>mybatis-spring-boot-starter</artifactId>
  63. <version>2.0.1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>tk.mybatis</groupId>
  67. <artifactId>mapper</artifactId>
  68. <version>4.1.5</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.github.pagehelper</groupId>
  72. <artifactId>pagehelper</artifactId>
  73. <version>5.1.8</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>mysql</groupId>
  77. <artifactId>mysql-connector-java</artifactId>
  78. <version>8.0.18</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>io.springfox</groupId>
  82. <artifactId>springfox-swagger2</artifactId>
  83. <version>2.8.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>io.springfox</groupId>
  87. <artifactId>springfox-swagger-ui</artifactId>
  88. <version>2.8.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>commons-codec</groupId>
  92. <artifactId>commons-codec</artifactId>
  93. <version>1.13</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.mybatis.generator</groupId>
  97. <artifactId>mybatis-generator-core</artifactId>
  98. <version>1.3.7</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.commons</groupId>
  102. <artifactId>commons-lang3</artifactId>
  103. <version>3.6</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-fileupload</groupId>
  107. <artifactId>commons-fileupload</artifactId>
  108. <version>1.4</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.alipay.sdk</groupId>
  112. <artifactId>alipay-sdk-java</artifactId>
  113. <version>3.7.4.ALL</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.fasterxml.jackson.dataformat</groupId>
  117. <artifactId>jackson-dataformat-xml</artifactId>
  118. <version>2.10.1</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.fasterxml.jackson.core</groupId>
  122. <artifactId>jackson-core</artifactId>
  123. <version>2.10.1</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>cn.jpush.api</groupId>
  127. <artifactId>jpush-client</artifactId>
  128. <version>3.4.3</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.poi</groupId>
  132. <artifactId>poi</artifactId>
  133. <version>4.1.2</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.poi</groupId>
  137. <artifactId>poi-ooxml-schemas</artifactId>
  138. <version>4.1.2</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.poi</groupId>
  142. <artifactId>poi-ooxml</artifactId>
  143. <version>4.1.2</version>
  144. </dependency>
  145. </dependencies>
  146. </dependencyManagement>
  147. <repositories>
  148. <repository>
  149. <id>aliyun-repos</id>
  150. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  151. <snapshots>
  152. <enabled>false</enabled>
  153. </snapshots>
  154. </repository>
  155. </repositories>
  156. <pluginRepositories>
  157. <pluginRepository>
  158. <id>aliyun-plugin</id>
  159. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  160. <snapshots>
  161. <enabled>false</enabled>
  162. </snapshots>
  163. </pluginRepository>
  164. </pluginRepositories>
  165. </project>