pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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.onemap</groupId>
  7. <artifactId>onemap</artifactId>
  8. <version>3.6.1</version>
  9. <name>onemap</name>
  10. <url>http://www.onemap.vip</url>
  11. <description>国土空间规划“一张图”实施监督系统</description>
  12. <properties>
  13. <onemap.version>3.6.1</onemap.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. <spring-boot.version>2.7.3</spring-boot.version>
  18. <spring-cloud.version>2021.0.4</spring-cloud.version>
  19. <spring-cloud-alibaba.version>2021.0.4.0</spring-cloud-alibaba.version>
  20. <spring-boot-admin.version>2.7.5</spring-boot-admin.version>
  21. <spring-boot.mybatis>2.2.2</spring-boot.mybatis>
  22. <spring-boot.mybatis-plus>3.5.2</spring-boot.mybatis-plus>
  23. <swagger.fox.version>3.0.0</swagger.fox.version>
  24. <org.python.version>2.7.0</org.python.version>
  25. <swagger.core.version>1.6.2</swagger.core.version>
  26. <tobato.version>1.27.2</tobato.version>
  27. <kaptcha.version>2.3.2</kaptcha.version>
  28. <pagehelper.boot.version>1.4.5</pagehelper.boot.version>
  29. <druid.version>1.2.12</druid.version>
  30. <dynamic-ds.version>3.5.2</dynamic-ds.version>
  31. <commons.io.version>2.11.0</commons.io.version>
  32. <commons.fileupload.version>1.4</commons.fileupload.version>
  33. <velocity.version>2.3</velocity.version>
  34. <fastjson.version>2.0.16</fastjson.version>
  35. <jjwt.version>0.9.1</jjwt.version>
  36. <minio.version>8.2.2</minio.version>
  37. <poi.version>4.1.2</poi.version>
  38. <commons-collections.version>3.2.2</commons-collections.version>
  39. <transmittable-thread-local.version>2.13.2</transmittable-thread-local.version>
  40. </properties>
  41. <!-- 依赖声明 -->
  42. <dependencyManagement>
  43. <dependencies>
  44. <!-- SpringCloud 微服务 -->
  45. <dependency>
  46. <groupId>org.springframework.cloud</groupId>
  47. <artifactId>spring-cloud-dependencies</artifactId>
  48. <version>${spring-cloud.version}</version>
  49. <type>pom</type>
  50. <scope>import</scope>
  51. </dependency>
  52. <!-- SpringCloud Alibaba 微服务 -->
  53. <dependency>
  54. <groupId>com.alibaba.cloud</groupId>
  55. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  56. <version>${spring-cloud-alibaba.version}</version>
  57. <type>pom</type>
  58. <scope>import</scope>
  59. </dependency>
  60. <!-- SpringBoot 依赖配置 -->
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-dependencies</artifactId>
  64. <version>${spring-boot.version}</version>
  65. <type>pom</type>
  66. <scope>import</scope>
  67. </dependency>
  68. <!-- FastDFS 分布式文件系统 -->
  69. <dependency>
  70. <groupId>com.github.tobato</groupId>
  71. <artifactId>fastdfs-client</artifactId>
  72. <version>${tobato.version}</version>
  73. </dependency>
  74. <!-- Mybatis-plus 依赖配置 -->
  75. <dependency>
  76. <groupId>com.baomidou</groupId>
  77. <artifactId>mybatis-plus-boot-starter</artifactId>
  78. <version>${spring-boot.mybatis-plus}</version>
  79. </dependency>
  80. <!-- Mybatis 依赖配置 -->
  81. <!-- <dependency>-->
  82. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  83. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  84. <!-- <version>${spring-boot.mybatis}</version>-->
  85. <!-- </dependency>-->
  86. <!-- Swagger 依赖配置 -->
  87. <dependency>
  88. <groupId>io.swagger</groupId>
  89. <artifactId>swagger-models</artifactId>
  90. <version>${swagger.core.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>io.swagger</groupId>
  94. <artifactId>swagger-annotations</artifactId>
  95. <version>${swagger.core.version}</version>
  96. </dependency>
  97. <!-- 验证码 -->
  98. <dependency>
  99. <groupId>com.github.penggle</groupId>
  100. <artifactId>kaptcha</artifactId>
  101. <version>${kaptcha.version}</version>
  102. </dependency>
  103. <!-- pagehelper 分页插件 -->
  104. <dependency>
  105. <groupId>com.github.pagehelper</groupId>
  106. <artifactId>pagehelper-spring-boot-starter</artifactId>
  107. <version>${pagehelper.boot.version}</version>
  108. </dependency>
  109. <!-- io常用工具类 -->
  110. <dependency>
  111. <groupId>commons-io</groupId>
  112. <artifactId>commons-io</artifactId>
  113. <version>${commons.io.version}</version>
  114. </dependency>
  115. <!-- excel工具 -->
  116. <dependency>
  117. <groupId>org.apache.poi</groupId>
  118. <artifactId>poi-ooxml</artifactId>
  119. <version>${poi.version}</version>
  120. </dependency>
  121. <!-- 文件上传工具类 -->
  122. <dependency>
  123. <groupId>commons-fileupload</groupId>
  124. <artifactId>commons-fileupload</artifactId>
  125. <version>${commons.fileupload.version}</version>
  126. </dependency>
  127. <!-- 代码生成使用模板 -->
  128. <dependency>
  129. <groupId>org.apache.velocity</groupId>
  130. <artifactId>velocity-engine-core</artifactId>
  131. <version>${velocity.version}</version>
  132. </dependency>
  133. <!-- Collection 增强Java集合框架 -->
  134. <dependency>
  135. <groupId>commons-collections</groupId>
  136. <artifactId>commons-collections</artifactId>
  137. <version>${commons-collections.version}</version>
  138. </dependency>
  139. <!-- JSON 解析器和生成器 -->
  140. <dependency>
  141. <groupId>com.alibaba.fastjson2</groupId>
  142. <artifactId>fastjson2</artifactId>
  143. <version>${fastjson.version}</version>
  144. </dependency>
  145. <!-- JWT -->
  146. <dependency>
  147. <groupId>io.jsonwebtoken</groupId>
  148. <artifactId>jjwt</artifactId>
  149. <version>${jjwt.version}</version>
  150. </dependency>
  151. <!-- 线程传递值 -->
  152. <dependency>
  153. <groupId>com.alibaba</groupId>
  154. <artifactId>transmittable-thread-local</artifactId>
  155. <version>${transmittable-thread-local.version}</version>
  156. </dependency>
  157. <!-- 核心模块 -->
  158. <dependency>
  159. <groupId>com.onemap</groupId>
  160. <artifactId>onemap-common-core</artifactId>
  161. <version>${onemap.version}</version>
  162. </dependency>
  163. <!-- 接口模块 -->
  164. <dependency>
  165. <groupId>com.onemap</groupId>
  166. <artifactId>onemap-common-swagger</artifactId>
  167. <version>${onemap.version}</version>
  168. </dependency>
  169. <!-- 安全模块 -->
  170. <dependency>
  171. <groupId>com.onemap</groupId>
  172. <artifactId>onemap-common-security</artifactId>
  173. <version>${onemap.version}</version>
  174. </dependency>
  175. <!-- 权限范围 -->
  176. <dependency>
  177. <groupId>com.onemap</groupId>
  178. <artifactId>onemap-common-datascope</artifactId>
  179. <version>${onemap.version}</version>
  180. </dependency>
  181. <!-- 多数据源 -->
  182. <dependency>
  183. <groupId>com.onemap</groupId>
  184. <artifactId>onemap-common-datasource</artifactId>
  185. <version>${onemap.version}</version>
  186. </dependency>
  187. <!-- 分布式事务 -->
  188. <dependency>
  189. <groupId>com.onemap</groupId>
  190. <artifactId>onemap-common-seata</artifactId>
  191. <version>${onemap.version}</version>
  192. </dependency>
  193. <!-- 日志记录 -->
  194. <dependency>
  195. <groupId>com.onemap</groupId>
  196. <artifactId>onemap-common-log</artifactId>
  197. <version>${onemap.version}</version>
  198. </dependency>
  199. <!-- 缓存服务 -->
  200. <dependency>
  201. <groupId>com.onemap</groupId>
  202. <artifactId>onemap-common-redis</artifactId>
  203. <version>${onemap.version}</version>
  204. </dependency>
  205. <!-- 系统接口 -->
  206. <dependency>
  207. <groupId>com.onemap</groupId>
  208. <artifactId>onemap-api-system</artifactId>
  209. <version>${onemap.version}</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.springframework.boot</groupId>
  213. <artifactId>spring-boot-starter-logging</artifactId>
  214. </dependency>
  215. </dependencies>
  216. </dependencyManagement>
  217. <modules>
  218. <module>onemap-auth</module>
  219. <module>onemap-gateway</module>
  220. <module>onemap-modules</module>
  221. <module>onemap-api</module>
  222. <module>onemap-common</module>
  223. </modules>
  224. <packaging>pom</packaging>
  225. <dependencies>
  226. <!-- bootstrap 启动器 -->
  227. <dependency>
  228. <groupId>org.springframework.cloud</groupId>
  229. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  230. </dependency>
  231. </dependencies>
  232. <build>
  233. <plugins>
  234. <plugin>
  235. <groupId>org.apache.maven.plugins</groupId>
  236. <artifactId>maven-compiler-plugin</artifactId>
  237. <configuration>
  238. <source>${java.version}</source>
  239. <target>${java.version}</target>
  240. <encoding>${project.build.sourceEncoding}</encoding>
  241. </configuration>
  242. </plugin>
  243. </plugins>
  244. </build>
  245. <repositories>
  246. <repository>
  247. <id>public</id>
  248. <name>aliyun nexus</name>
  249. <url>https://maven.aliyun.com/repository/public</url>
  250. <releases>
  251. <enabled>true</enabled>
  252. </releases>
  253. </repository>
  254. </repositories>
  255. <pluginRepositories>
  256. <pluginRepository>
  257. <id>public</id>
  258. <name>aliyun nexus</name>
  259. <url>https://maven.aliyun.com/repository/public</url>
  260. <releases>
  261. <enabled>true</enabled>
  262. </releases>
  263. <snapshots>
  264. <enabled>false</enabled>
  265. </snapshots>
  266. </pluginRepository>
  267. </pluginRepositories>
  268. </project>