pom.xml 8.3 KB

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