pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  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.14</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. <!-- 文件上传工具类 -->
  120. <dependency>
  121. <groupId>commons-fileupload</groupId>
  122. <artifactId>commons-fileupload</artifactId>
  123. <version>${commons.fileupload.version}</version>
  124. </dependency>
  125. <!-- excel工具 -->
  126. <dependency>
  127. <groupId>org.apache.poi</groupId>
  128. <artifactId>poi-ooxml</artifactId>
  129. <version>${poi.version}</version>
  130. </dependency>
  131. <!-- velocity代码生成使用模板 -->
  132. <dependency>
  133. <groupId>org.apache.velocity</groupId>
  134. <artifactId>velocity</artifactId>
  135. <version>${velocity.version}</version>
  136. <exclusions>
  137. <exclusion>
  138. <groupId>commons-collections</groupId>
  139. <artifactId>commons-collections</artifactId>
  140. </exclusion>
  141. </exclusions>
  142. </dependency>
  143. <!-- collections工具类 -->
  144. <dependency>
  145. <groupId>commons-collections</groupId>
  146. <artifactId>commons-collections</artifactId>
  147. <version>${commons.collections.version}</version>
  148. </dependency>
  149. <!-- 阿里JSON解析器 -->
  150. <dependency>
  151. <groupId>com.alibaba</groupId>
  152. <artifactId>fastjson</artifactId>
  153. <version>${fastjson.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.projectlombok</groupId>
  157. <artifactId>lombok</artifactId>
  158. <version>${lombok.version}</version>
  159. </dependency>
  160. <!-- Token生成与解析-->
  161. <dependency>
  162. <groupId>io.jsonwebtoken</groupId>
  163. <artifactId>jjwt</artifactId>
  164. <version>${jwt.version}</version>
  165. </dependency>
  166. <!-- 验证码 -->
  167. <dependency>
  168. <groupId>com.github.penggle</groupId>
  169. <artifactId>kaptcha</artifactId>
  170. <version>${kaptcha.version}</version>
  171. </dependency>
  172. <!-- 定时任务-->
  173. <dependency>
  174. <groupId>com.willalp</groupId>
  175. <artifactId>willalp-quartz</artifactId>
  176. <version>${willalp.version}</version>
  177. </dependency>
  178. <!-- 代码生成-->
  179. <dependency>
  180. <groupId>com.willalp</groupId>
  181. <artifactId>willalp-generator</artifactId>
  182. <version>${willalp.version}</version>
  183. </dependency>
  184. <!-- 核心模块-->
  185. <dependency>
  186. <groupId>com.willalp</groupId>
  187. <artifactId>willalp-framework</artifactId>
  188. <version>${willalp.version}</version>
  189. </dependency>
  190. <!-- 系统模块-->
  191. <dependency>
  192. <groupId>com.willalp</groupId>
  193. <artifactId>willalp-system</artifactId>
  194. <version>${willalp.version}</version>
  195. </dependency>
  196. <!-- 通用工具-->
  197. <dependency>
  198. <groupId>com.willalp</groupId>
  199. <artifactId>willalp-common</artifactId>
  200. <version>${willalp.version}</version>
  201. </dependency>
  202. <!-- oss-->
  203. <dependency>
  204. <groupId>com.willalp</groupId>
  205. <artifactId>willalp-oss</artifactId>
  206. <version>${willalp.version}</version>
  207. </dependency>
  208. <!-- 业务代码-->
  209. <dependency>
  210. <groupId>com.willalp</groupId>
  211. <artifactId>willalp-biz</artifactId>
  212. <version>${willalp.version}</version>
  213. </dependency>
  214. <!-- 设备模块代码-->
  215. <dependency>
  216. <groupId>com.willalp</groupId>
  217. <artifactId>willalp-device</artifactId>
  218. <version>${willalp.version}</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.willalp</groupId>
  222. <artifactId>willalp-canteen</artifactId>
  223. <version>${willalp.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>com.willalp</groupId>
  227. <artifactId>willalp-userinfo</artifactId>
  228. <version>${willalp.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>com.willalp</groupId>
  232. <artifactId>willalp-code</artifactId>
  233. <version>${willalp.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.willalp</groupId>
  237. <artifactId>willalp-level</artifactId>
  238. <version>${willalp.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>com.willalp</groupId>
  242. <artifactId>willalp-apply</artifactId>
  243. <version>${willalp.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>com.willalp</groupId>
  247. <artifactId>willalp-app</artifactId>
  248. <version>${willalp.version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>com.willalp</groupId>
  252. <artifactId>willalp-integral</artifactId>
  253. <version>${willalp.version}</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>com.willalp</groupId>
  257. <artifactId>willalp-clocking-in</artifactId>
  258. <version>${willalp.version}</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>com.willalp</groupId>
  262. <artifactId>willalp-erms</artifactId>
  263. <version>${willalp.version}</version>
  264. </dependency>
  265. <!-- uniApp 推送sdk -->
  266. <dependency>
  267. <groupId>com.getui.push</groupId>
  268. <artifactId>restful-sdk</artifactId>
  269. <version>1.0.0.1</version>
  270. </dependency>
  271. <!-- glib 反射实体操作-->
  272. <dependency>
  273. <groupId>cglib</groupId>
  274. <artifactId>cglib-nodep</artifactId>
  275. <version>3.2.5</version>
  276. </dependency>
  277. </dependencies>
  278. </dependencyManagement>
  279. <modules>
  280. <module>willalp-admin</module>
  281. <module>willalp-biz</module>
  282. <module>willalp-framework</module>
  283. <module>willalp-system</module>
  284. <module>willalp-quartz</module>
  285. <module>willalp-generator</module>
  286. <module>willalp-common</module>
  287. <module>willalp-oss</module>
  288. <module>willalp-device</module>
  289. <module>willalp-userinfo</module>
  290. <module>willalp-canteen</module>
  291. <module>willalp-integral</module>
  292. <module>willalp-level</module>
  293. <module>willalp-code</module>
  294. <module>willalp-apply</module>
  295. <module>willalp-app</module>
  296. <module>willalp-clocking-in</module>
  297. <module>willalp-erms</module>
  298. </modules>
  299. <packaging>pom</packaging>
  300. <dependencies>
  301. </dependencies>
  302. <profiles>
  303. <profile>
  304. <!-- 本地开发环境 -->
  305. <id>dev</id>
  306. <properties>
  307. <profileActive>dev</profileActive>
  308. </properties>
  309. <activation>
  310. <activeByDefault>true</activeByDefault>
  311. </activation>
  312. </profile>
  313. <profile>
  314. <!-- 生产环境 -->
  315. <id>prod</id>
  316. <properties>
  317. <profileActive>prod</profileActive>
  318. </properties>
  319. </profile>
  320. </profiles>
  321. <build>
  322. <finalName>${project.artifactId}</finalName>
  323. <resources>
  324. <resource>
  325. <directory>src/main/java</directory>
  326. <includes>
  327. <include>**/*.xml</include>
  328. </includes>
  329. <filtering>false</filtering>
  330. </resource>
  331. <resource>
  332. <directory>src/main/resources</directory>
  333. <includes>
  334. <include>**/*</include>
  335. <include>application.yml</include>
  336. <include>application-${profileActive}.yml</include>
  337. </includes>
  338. <filtering>true</filtering>
  339. </resource>
  340. <resource>
  341. <directory>src/main/resources</directory>
  342. <includes>
  343. <include>**/*.xlsx</include>
  344. <include>**/*.xls</include>
  345. <include>static/**</include>
  346. <include>modeler/**</include>
  347. </includes>
  348. <filtering>false</filtering>
  349. </resource>
  350. </resources>
  351. <plugins>
  352. <plugin>
  353. <groupId>org.apache.maven.plugins</groupId>
  354. <artifactId>maven-compiler-plugin</artifactId>
  355. <version>3.1</version>
  356. <configuration>
  357. <source>${java.version}</source>
  358. <target>${java.version}</target>
  359. <encoding>${project.build.sourceEncoding}</encoding>
  360. </configuration>
  361. </plugin>
  362. <plugin>
  363. <groupId>org.apache.maven.plugins</groupId>
  364. <artifactId>maven-resources-plugin</artifactId>
  365. <configuration>
  366. <nonFilteredFileExtensions>
  367. <nonFilteredFileExtension>jks</nonFilteredFileExtension>
  368. </nonFilteredFileExtensions>
  369. </configuration>
  370. </plugin>
  371. </plugins>
  372. </build>
  373. <repositories>
  374. <repository>
  375. <id>public</id>
  376. <name>aliyun nexus</name>
  377. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  378. <releases>
  379. <enabled>true</enabled>
  380. </releases>
  381. </repository>
  382. </repositories>
  383. <pluginRepositories>
  384. <pluginRepository>
  385. <id>public</id>
  386. <name>aliyun nexus</name>
  387. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  388. <releases>
  389. <enabled>true</enabled>
  390. </releases>
  391. <snapshots>
  392. <enabled>false</enabled>
  393. </snapshots>
  394. </pluginRepository>
  395. </pluginRepositories>
  396. </project>