pom.xml 8.9 KB

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