pom.xml 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.goomood</groupId>
  7. <artifactId>gm-ser-phm</artifactId>
  8. <version>1.0.0</version>
  9. <name>gm-base-phm</name>
  10. <url>http://www.goomood.cn</url>
  11. <description>phm</description>
  12. <properties>
  13. <goomood.version>1.0.0</goomood.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  18. <spring-framework.version>5.3.33</spring-framework.version>
  19. <druid.version>1.2.20</druid.version>
  20. <bitwalker.version>1.21</bitwalker.version>
  21. <swagger.version>3.0.0</swagger.version>
  22. <kaptcha.version>2.3.3</kaptcha.version>
  23. <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
  24. <fastjson.version>2.0.43</fastjson.version>
  25. <oshi.version>6.5.0</oshi.version>
  26. <commons.io.version>2.13.0</commons.io.version>
  27. <poi.version>4.1.2</poi.version>
  28. <velocity.version>2.3</velocity.version>
  29. <jwt.version>0.9.1</jwt.version>
  30. <elasticsearch.version>7.17.0</elasticsearch.version>
  31. <mybatis-plus-version>3.5.12</mybatis-plus-version>
  32. <lombok-version>1.18.12</lombok-version>
  33. </properties>
  34. <!-- 依赖声明 -->
  35. <dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>com.baomidou</groupId>
  39. <artifactId>mybatis-plus-boot-starter</artifactId>
  40. <version>${mybatis-plus-version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.projectlombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. <version>${lombok-version}</version>
  46. </dependency>
  47. <!-- SpringFramework的依赖配置-->
  48. <dependency>
  49. <groupId>org.springframework</groupId>
  50. <artifactId>spring-framework-bom</artifactId>
  51. <version>${spring-framework.version}</version>
  52. <type>pom</type>
  53. <scope>import</scope>
  54. </dependency>
  55. <!-- SpringBoot的依赖配置-->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-dependencies</artifactId>
  59. <version>2.5.15</version>
  60. <type>pom</type>
  61. <scope>import</scope>
  62. </dependency>
  63. <!-- 阿里数据库连接池 -->
  64. <dependency>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>druid-spring-boot-starter</artifactId>
  67. <version>${druid.version}</version>
  68. </dependency>
  69. <!-- 解析客户端操作系统、浏览器等 -->
  70. <dependency>
  71. <groupId>eu.bitwalker</groupId>
  72. <artifactId>UserAgentUtils</artifactId>
  73. <version>${bitwalker.version}</version>
  74. </dependency>
  75. <!-- pagehelper 分页插件 -->
  76. <dependency>
  77. <groupId>com.github.pagehelper</groupId>
  78. <artifactId>pagehelper-spring-boot-starter</artifactId>
  79. <version>${pagehelper.boot.version}</version>
  80. </dependency>
  81. <!-- 获取系统信息 -->
  82. <dependency>
  83. <groupId>com.github.oshi</groupId>
  84. <artifactId>oshi-core</artifactId>
  85. <version>${oshi.version}</version>
  86. </dependency>
  87. <!-- Swagger3依赖 -->
  88. <dependency>
  89. <groupId>io.springfox</groupId>
  90. <artifactId>springfox-boot-starter</artifactId>
  91. <version>${swagger.version}</version>
  92. <exclusions>
  93. <exclusion>
  94. <groupId>io.swagger</groupId>
  95. <artifactId>swagger-models</artifactId>
  96. </exclusion>
  97. </exclusions>
  98. </dependency>
  99. <!-- io常用工具类 -->
  100. <dependency>
  101. <groupId>commons-io</groupId>
  102. <artifactId>commons-io</artifactId>
  103. <version>${commons.io.version}</version>
  104. </dependency>
  105. <!-- excel工具 -->
  106. <dependency>
  107. <groupId>org.apache.poi</groupId>
  108. <artifactId>poi-ooxml</artifactId>
  109. <version>5.2.3</version>
  110. </dependency>
  111. <!-- velocity代码生成使用模板 -->
  112. <dependency>
  113. <groupId>org.apache.velocity</groupId>
  114. <artifactId>velocity-engine-core</artifactId>
  115. <version>${velocity.version}</version>
  116. </dependency>
  117. <!-- 阿里JSON解析器 -->
  118. <dependency>
  119. <groupId>com.alibaba.fastjson2</groupId>
  120. <artifactId>fastjson2</artifactId>
  121. <version>${fastjson.version}</version>
  122. </dependency>
  123. <!-- Token生成与解析-->
  124. <dependency>
  125. <groupId>io.jsonwebtoken</groupId>
  126. <artifactId>jjwt</artifactId>
  127. <version>${jwt.version}</version>
  128. </dependency>
  129. <!-- 验证码 -->
  130. <dependency>
  131. <groupId>pro.fessional</groupId>
  132. <artifactId>kaptcha</artifactId>
  133. <version>${kaptcha.version}</version>
  134. </dependency>
  135. <!-- 定时任务-->
  136. <dependency>
  137. <groupId>com.goomood</groupId>
  138. <artifactId>gm-quartz</artifactId>
  139. <version>${goomood.version}</version>
  140. </dependency>
  141. <!-- 代码生成-->
  142. <dependency>
  143. <groupId>com.goomood</groupId>
  144. <artifactId>gm-generator</artifactId>
  145. <version>${goomood.version}</version>
  146. </dependency>
  147. <!-- 核心模块-->
  148. <dependency>
  149. <groupId>com.goomood</groupId>
  150. <artifactId>gm-framework</artifactId>
  151. <version>${goomood.version}</version>
  152. </dependency>
  153. <!-- 系统模块-->
  154. <dependency>
  155. <groupId>com.goomood</groupId>
  156. <artifactId>gm-system</artifactId>
  157. <version>${goomood.version}</version>
  158. </dependency>
  159. <!-- 通用工具-->
  160. <dependency>
  161. <groupId>com.goomood</groupId>
  162. <artifactId>gm-common</artifactId>
  163. <version>${goomood.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.elasticsearch.client</groupId>
  167. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  168. <version>${elasticsearch.version}</version>
  169. <exclusions>
  170. <exclusion>
  171. <groupId>org.elasticsearch</groupId>
  172. <artifactId>elasticsearch</artifactId>
  173. </exclusion>
  174. </exclusions>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.elasticsearch</groupId>
  178. <artifactId>elasticsearch</artifactId>
  179. <version>${elasticsearch.version}</version>
  180. </dependency>
  181. <!-- SpringCache的依赖配置 -->
  182. <dependency>
  183. <groupId>org.springframework.boot</groupId>
  184. <artifactId>spring-boot-starter-cache</artifactId>
  185. <version>3.2.2</version>
  186. </dependency>
  187. <!-- Ehcache缓存管理器 -->
  188. <dependency>
  189. <groupId>net.sf.ehcache</groupId>
  190. <artifactId>ehcache</artifactId>
  191. <version>2.10.5</version>
  192. </dependency>
  193. </dependencies>
  194. </dependencyManagement>
  195. <modules>
  196. <module>gm-base-ser</module>
  197. <module>gm-framework</module>
  198. <module>gm-system</module>
  199. <module>gm-quartz</module>
  200. <module>gm-generator</module>
  201. <module>gm-common</module>
  202. </modules>
  203. <packaging>pom</packaging>
  204. <build>
  205. <plugins>
  206. <plugin>
  207. <groupId>org.apache.maven.plugins</groupId>
  208. <artifactId>maven-compiler-plugin</artifactId>
  209. <version>3.1</version>
  210. <configuration>
  211. <source>${java.version}</source>
  212. <target>${java.version}</target>
  213. <encoding>${project.build.sourceEncoding}</encoding>
  214. </configuration>
  215. </plugin>
  216. </plugins>
  217. </build>
  218. <repositories>
  219. <repository>
  220. <id>public</id>
  221. <name>aliyun nexus</name>
  222. <url>https://maven.aliyun.com/repository/public</url>
  223. <releases>
  224. <enabled>true</enabled>
  225. </releases>
  226. </repository>
  227. </repositories>
  228. <pluginRepositories>
  229. <pluginRepository>
  230. <id>public</id>
  231. <name>aliyun nexus</name>
  232. <url>https://maven.aliyun.com/repository/public</url>
  233. <releases>
  234. <enabled>true</enabled>
  235. </releases>
  236. <snapshots>
  237. <enabled>false</enabled>
  238. </snapshots>
  239. </pluginRepository>
  240. </pluginRepositories>
  241. </project>