pom.xml 9.6 KB

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