pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  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.willalp</groupId>
  7. <artifactId>willalp</artifactId>
  8. <version>3.7.0</version>
  9. <name>willalp-vue-plus</name>
  10. <!-- 原框架学习地址 -->
  11. <url>http://www.ruoyi.vip</url>
  12. <description>HS平台</description>
  13. <properties>
  14. <willalp.version>3.7.0</willalp.version>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>1.8</java.version>
  18. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  19. <druid.version>1.1.22</druid.version>
  20. <bitwalker.version>1.21</bitwalker.version>
  21. <swagger.version>3.0.0</swagger.version>
  22. <kaptcha.version>2.3.2</kaptcha.version>
  23. <mybatis-plus-boot-starter.version>3.5.2</mybatis-plus-boot-starter.version>
  24. <pagehelper.boot.version>1.3.1</pagehelper.boot.version>
  25. <fastjson.version>1.2.78</fastjson.version>
  26. <oshi.version>5.8.0</oshi.version>
  27. <jna.version>5.8.0</jna.version>
  28. <commons.io.version>2.11.0</commons.io.version>
  29. <commons.fileupload.version>1.4</commons.fileupload.version>
  30. <commons.collections.version>3.2.2</commons.collections.version>
  31. <poi.version>4.1.2</poi.version>
  32. <velocity.version>1.7</velocity.version>
  33. <jwt.version>0.9.1</jwt.version>
  34. <beetl.version>1.1.55.RELEASE</beetl.version>
  35. <commons-text.version>1.6</commons-text.version>
  36. <activiti.version>6.0.0</activiti.version>
  37. <lombok.version>1.18.4</lombok.version>
  38. </properties>
  39. <!-- 依赖声明 -->
  40. <dependencyManagement>
  41. <dependencies>
  42. <!-- SpringBoot的依赖配置-->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-dependencies</artifactId>
  46. <version>2.5.5</version>
  47. <type>pom</type>
  48. <scope>import</scope>
  49. </dependency>
  50. <!-- SpringBoot单元测试-->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-test</artifactId>
  54. <version>2.5.5</version>
  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. <!-- SpringBoot集成mybatis plus框架 -->
  69. <dependency>
  70. <groupId>com.baomidou</groupId>
  71. <artifactId>mybatis-plus-boot-starter</artifactId>
  72. <version>${mybatis-plus-boot-starter.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.baomidou</groupId>
  76. <artifactId>mybatis-plus-extension</artifactId>
  77. <version>${mybatis-plus-boot-starter.version}</version>
  78. </dependency>
  79. <!-- pagehelper 分页插件 -->
  80. <dependency>
  81. <groupId>com.github.pagehelper</groupId>
  82. <artifactId>pagehelper-spring-boot-starter</artifactId>
  83. <version>${pagehelper.boot.version}</version>
  84. </dependency>
  85. <!-- 获取系统信息 -->
  86. <dependency>
  87. <groupId>com.github.oshi</groupId>
  88. <artifactId>oshi-core</artifactId>
  89. <version>${oshi.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>net.java.dev.jna</groupId>
  93. <artifactId>jna</artifactId>
  94. <version>${jna.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>net.java.dev.jna</groupId>
  98. <artifactId>jna-platform</artifactId>
  99. <version>${jna.version}</version>
  100. </dependency>
  101. <!-- Swagger3依赖 -->
  102. <dependency>
  103. <groupId>io.springfox</groupId>
  104. <artifactId>springfox-boot-starter</artifactId>
  105. <version>${swagger.version}</version>
  106. <exclusions>
  107. <exclusion>
  108. <groupId>io.swagger</groupId>
  109. <artifactId>swagger-models</artifactId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. <!-- io常用工具类 -->
  114. <dependency>
  115. <groupId>commons-io</groupId>
  116. <artifactId>commons-io</artifactId>
  117. <version>${commons.io.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.commons</groupId>
  121. <artifactId>commons-text</artifactId>
  122. <version>${commons-text.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.ibeetl</groupId>
  126. <artifactId>beetl-framework-starter</artifactId>
  127. <version>${beetl.version}</version>
  128. </dependency>
  129. <!-- 文件上传工具类 -->
  130. <dependency>
  131. <groupId>commons-fileupload</groupId>
  132. <artifactId>commons-fileupload</artifactId>
  133. <version>${commons.fileupload.version}</version>
  134. </dependency>
  135. <!-- excel工具 -->
  136. <dependency>
  137. <groupId>org.apache.poi</groupId>
  138. <artifactId>poi-ooxml</artifactId>
  139. <version>${poi.version}</version>
  140. </dependency>
  141. <!-- velocity代码生成使用模板 -->
  142. <dependency>
  143. <groupId>org.apache.velocity</groupId>
  144. <artifactId>velocity</artifactId>
  145. <version>${velocity.version}</version>
  146. <exclusions>
  147. <exclusion>
  148. <groupId>commons-collections</groupId>
  149. <artifactId>commons-collections</artifactId>
  150. </exclusion>
  151. </exclusions>
  152. </dependency>
  153. <!-- collections工具类 -->
  154. <dependency>
  155. <groupId>commons-collections</groupId>
  156. <artifactId>commons-collections</artifactId>
  157. <version>${commons.collections.version}</version>
  158. </dependency>
  159. <!-- 阿里JSON解析器 -->
  160. <dependency>
  161. <groupId>com.alibaba</groupId>
  162. <artifactId>fastjson</artifactId>
  163. <version>${fastjson.version}</version>
  164. </dependency>
  165. <!-- Token生成与解析-->
  166. <dependency>
  167. <groupId>io.jsonwebtoken</groupId>
  168. <artifactId>jjwt</artifactId>
  169. <version>${jwt.version}</version>
  170. </dependency>
  171. <!-- 验证码 -->
  172. <dependency>
  173. <groupId>com.github.penggle</groupId>
  174. <artifactId>kaptcha</artifactId>
  175. <version>${kaptcha.version}</version>
  176. </dependency>
  177. <!-- 定时任务-->
  178. <dependency>
  179. <groupId>com.willalp</groupId>
  180. <artifactId>willalp-quartz</artifactId>
  181. <version>${willalp.version}</version>
  182. </dependency>
  183. <!-- 代码生成-->
  184. <dependency>
  185. <groupId>com.willalp</groupId>
  186. <artifactId>willalp-generator</artifactId>
  187. <version>${willalp.version}</version>
  188. </dependency>
  189. <!-- 核心模块-->
  190. <dependency>
  191. <groupId>com.willalp</groupId>
  192. <artifactId>willalp-framework</artifactId>
  193. <version>${willalp.version}</version>
  194. </dependency>
  195. <!-- 系统模块-->
  196. <dependency>
  197. <groupId>com.willalp</groupId>
  198. <artifactId>willalp-system</artifactId>
  199. <version>${willalp.version}</version>
  200. </dependency>
  201. <!-- 通用工具-->
  202. <dependency>
  203. <groupId>com.willalp</groupId>
  204. <artifactId>willalp-common</artifactId>
  205. <version>${willalp.version}</version>
  206. </dependency>
  207. <!-- oss-->
  208. <dependency>
  209. <groupId>com.willalp</groupId>
  210. <artifactId>willalp-oss</artifactId>
  211. <version>${willalp.version}</version>
  212. </dependency>
  213. <!-- 业务代码-->
  214. <dependency>
  215. <groupId>com.willalp</groupId>
  216. <artifactId>willalp-biz</artifactId>
  217. <version>${willalp.version}</version>
  218. </dependency>
  219. <!-- 设备模块代码-->
  220. <dependency>
  221. <groupId>com.willalp</groupId>
  222. <artifactId>willalp-device</artifactId>
  223. <version>${willalp.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>com.willalp</groupId>
  227. <artifactId>willalp-canteen</artifactId>
  228. <version>${willalp.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>com.willalp</groupId>
  232. <artifactId>willalp-userinfo</artifactId>
  233. <version>${willalp.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.willalp</groupId>
  237. <artifactId>willalp-code</artifactId>
  238. <version>${willalp.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>com.willalp</groupId>
  242. <artifactId>willalp-level</artifactId>
  243. <version>${willalp.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>com.willalp</groupId>
  247. <artifactId>willalp-apply</artifactId>
  248. <version>${willalp.version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>com.willalp</groupId>
  252. <artifactId>willalp-app</artifactId>
  253. <version>${willalp.version}</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>com.willalp</groupId>
  257. <artifactId>willalp-integral</artifactId>
  258. <version>${willalp.version}</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>com.willalp</groupId>
  262. <artifactId>willalp-control</artifactId>
  263. <version>${willalp.version}</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>com.willalp</groupId>
  267. <artifactId>willalp-clocking-in</artifactId>
  268. <version>${willalp.version}</version>
  269. </dependency>
  270. <!-- uniApp 推送sdk -->
  271. <dependency>
  272. <groupId>com.getui.push</groupId>
  273. <artifactId>restful-sdk</artifactId>
  274. <version>1.0.0.1</version>
  275. </dependency>
  276. <!-- glib 反射实体操作-->
  277. <dependency>
  278. <groupId>cglib</groupId>
  279. <artifactId>cglib-nodep</artifactId>
  280. <version>3.2.5</version>
  281. </dependency>
  282. </dependencies>
  283. </dependencyManagement>
  284. <modules>
  285. <module>willalp-admin</module>
  286. <module>willalp-biz</module>
  287. <module>willalp-framework</module>
  288. <module>willalp-system</module>
  289. <module>willalp-quartz</module>
  290. <module>willalp-generator</module>
  291. <module>willalp-common</module>
  292. <module>willalp-oss</module>
  293. <module>willalp-device</module>
  294. <module>willalp-userinfo</module>
  295. <module>willalp-canteen</module>
  296. <module>willalp-integral</module>
  297. <module>willalp-level</module>
  298. <module>willalp-code</module>
  299. <module>willalp-apply</module>
  300. <module>willalp-app</module>
  301. <module>willalp-control</module>
  302. <module>willalp-clocking-in</module>
  303. </modules>
  304. <packaging>pom</packaging>
  305. <dependencies>
  306. </dependencies>
  307. <profiles>
  308. <profile>
  309. <!-- 本地开发环境 -->
  310. <id>dev</id>
  311. <properties>
  312. <profileActive>dev</profileActive>
  313. </properties>
  314. <activation>
  315. <activeByDefault>true</activeByDefault>
  316. </activation>
  317. </profile>
  318. <profile>
  319. <!-- 生产环境 -->
  320. <id>prod</id>
  321. <properties>
  322. <profileActive>prod</profileActive>
  323. </properties>
  324. </profile>
  325. </profiles>
  326. <build>
  327. <finalName>${project.artifactId}</finalName>
  328. <resources>
  329. <resource>
  330. <directory>src/main/java</directory>
  331. <includes>
  332. <include>**/*.xml</include>
  333. </includes>
  334. <filtering>false</filtering>
  335. </resource>
  336. <resource>
  337. <directory>src/main/resources</directory>
  338. <includes>
  339. <include>**/*</include>
  340. <include>application.yml</include>
  341. <include>application-${profileActive}.yml</include>
  342. </includes>
  343. <filtering>true</filtering>
  344. </resource>
  345. <resource>
  346. <directory>src/main/resources</directory>
  347. <includes>
  348. <include>**/*.xlsx</include>
  349. <include>**/*.xls</include>
  350. <include>static/**</include>
  351. <include>modeler/**</include>
  352. </includes>
  353. <filtering>false</filtering>
  354. </resource>
  355. </resources>
  356. <plugins>
  357. <plugin>
  358. <groupId>org.apache.maven.plugins</groupId>
  359. <artifactId>maven-compiler-plugin</artifactId>
  360. <version>3.1</version>
  361. <configuration>
  362. <source>${java.version}</source>
  363. <target>${java.version}</target>
  364. <encoding>${project.build.sourceEncoding}</encoding>
  365. </configuration>
  366. </plugin>
  367. <plugin>
  368. <groupId>org.apache.maven.plugins</groupId>
  369. <artifactId>maven-resources-plugin</artifactId>
  370. <configuration>
  371. <nonFilteredFileExtensions>
  372. <nonFilteredFileExtension>jks</nonFilteredFileExtension>
  373. </nonFilteredFileExtensions>
  374. </configuration>
  375. </plugin>
  376. </plugins>
  377. </build>
  378. <repositories>
  379. <repository>
  380. <id>public</id>
  381. <name>aliyun nexus</name>
  382. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  383. <releases>
  384. <enabled>true</enabled>
  385. </releases>
  386. </repository>
  387. </repositories>
  388. <pluginRepositories>
  389. <pluginRepository>
  390. <id>public</id>
  391. <name>aliyun nexus</name>
  392. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  393. <releases>
  394. <enabled>true</enabled>
  395. </releases>
  396. <snapshots>
  397. <enabled>false</enabled>
  398. </snapshots>
  399. </pluginRepository>
  400. </pluginRepositories>
  401. </project>