pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~
  4. ~ Copyright (c) 2018-2025, avenue All rights reserved.
  5. ~
  6. ~ Redistribution and use in source and binary forms, with or without
  7. ~ modification, are permitted provided that the following conditions are met:
  8. ~
  9. ~ Redistributions of source code must retain the above copyright notice,
  10. ~ this list of conditions and the following disclaimer.
  11. ~ Redistributions in binary form must reproduce the above copyright
  12. ~ notice, this list of conditions and the following disclaimer in the
  13. ~ documentation and/or other materials provided with the distribution.
  14. ~ Neither the name of the pig4cloud.com developer nor the names of its
  15. ~ contributors may be used to endorse or promote products derived from
  16. ~ this software without specific prior written permission.
  17. ~ Author: avenue
  18. ~
  19. -->
  20. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  22. <modelVersion>4.0.0</modelVersion>
  23. <parent>
  24. <groupId>com.emergency</groupId>
  25. <artifactId>avenue-upms</artifactId>
  26. <version>4.6.0</version>
  27. </parent>
  28. <artifactId>avenue-upms-biz</artifactId>
  29. <packaging>jar</packaging>
  30. <description>avenue 通用用户权限管理系统业务处理模块</description>
  31. <dependencies>
  32. <!--认证中心-->
  33. <dependency>
  34. <groupId>com.emergency</groupId>
  35. <artifactId>avenue-auth</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <!--定时任务
  39. <dependency>
  40. <groupId>com.emergency</groupId>
  41. <artifactId>avenue-quartz</artifactId>
  42. <version>${project.version}</version>
  43. </dependency>-->
  44. <!-- mysql -->
  45. <dependency>
  46. <groupId>mysql</groupId>
  47. <artifactId>mysql-connector-java</artifactId>
  48. </dependency>
  49. <!-- https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8 -->
  50. <dependency>
  51. <groupId>com.oracle.database.jdbc</groupId>
  52. <artifactId>ojdbc8</artifactId>
  53. <version>19.3.0.0</version>
  54. </dependency>
  55. <!-- DM8驱动包 -->
  56. <dependency>
  57. <groupId>com.dameng</groupId>
  58. <artifactId>DmJdbcDriver18</artifactId>
  59. <version>8.1.2.79</version>
  60. </dependency>
  61. <!--upms api、model 模块-->
  62. <dependency>
  63. <groupId>com.emergency</groupId>
  64. <artifactId>avenue-upms-api</artifactId>
  65. </dependency>
  66. <!--日志处理-->
  67. <dependency>
  68. <groupId>com.emergency</groupId>
  69. <artifactId>avenue-common-log</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.emergency</groupId>
  73. <artifactId>avenue-common-data</artifactId>
  74. </dependency>
  75. <!--文件系统-->
  76. <dependency>
  77. <groupId>com.emergency</groupId>
  78. <artifactId>avenue-common-oss</artifactId>
  79. </dependency>
  80. <!--XSS 安全过滤-->
  81. <dependency>
  82. <groupId>com.emergency</groupId>
  83. <artifactId>avenue-common-xss</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.emergency</groupId>
  87. <artifactId>avenue-common-sentinel</artifactId>
  88. </dependency>
  89. <!--mybatis-->
  90. <dependency>
  91. <groupId>com.baomidou</groupId>
  92. <artifactId>mybatis-plus-boot-starter</artifactId>
  93. </dependency>
  94. <!-- druid 连接池 -->
  95. <dependency>
  96. <groupId>com.alibaba</groupId>
  97. <artifactId>druid-spring-boot-starter</artifactId>
  98. </dependency>
  99. <!-- cas sdk -->
  100. <dependency>
  101. <groupId>org.jasig.cas.client</groupId>
  102. <artifactId>cas-client-core</artifactId>
  103. <version>${cas.sdk.version}</version>
  104. </dependency>
  105. <!--旧版api,新版api未包含全部的服务端API的产品能力-->
  106. <dependency>
  107. <groupId>com.aliyun</groupId>
  108. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  109. <version>${dingtalk.old.version}</version>
  110. </dependency>
  111. <!--企业微信-->
  112. <dependency>
  113. <groupId>com.github.binarywang</groupId>
  114. <artifactId>weixin-java-cp</artifactId>
  115. </dependency>
  116. <!--web 模块-->
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-web</artifactId>
  120. </dependency>
  121. <!--undertow容器-->
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-starter-undertow</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.github.xiaoymin</groupId>
  128. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  129. <version>${knife4j.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springdoc</groupId>
  133. <artifactId>springdoc-openapi-ui</artifactId>
  134. <version>${springdoc.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.emergency</groupId>
  138. <artifactId>avenue-common-swagger</artifactId>
  139. </dependency>
  140. <!-- https://mvnrepository.com/artifact/co.elastic.apm/apm-agent-attach -->
  141. <dependency>
  142. <groupId>co.elastic.apm</groupId>
  143. <artifactId>apm-agent-attach</artifactId>
  144. <version>1.36.0</version>
  145. <scope>provided</scope>
  146. </dependency>
  147. <!-- 状态机 -->
  148. <dependency>
  149. <groupId>org.squirrelframework</groupId>
  150. <artifactId>squirrel-foundation</artifactId>
  151. <version>${squirrel.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.alibaba</groupId>
  155. <artifactId>fastjson</artifactId>
  156. <version>${fastjson.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>cn.afterturn</groupId>
  160. <artifactId>easypoi-spring-boot-starter</artifactId>
  161. <version>4.1.2</version>
  162. </dependency>
  163. <!-- <dependency>-->
  164. <!-- <groupId>org.springframework.boot</groupId>-->
  165. <!-- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>-->
  166. <!-- </dependency>-->
  167. <dependency>
  168. <groupId>org.redisson</groupId>
  169. <artifactId>redisson-spring-boot-starter</artifactId>
  170. <version>${redisson.springStarter}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>io.minio</groupId>
  174. <artifactId>minio</artifactId>
  175. <version>8.5.1</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.springframework.boot</groupId>
  179. <artifactId>spring-boot-starter-websocket</artifactId>
  180. </dependency>
  181. </dependencies>
  182. <build>
  183. <plugins>
  184. <plugin>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-maven-plugin</artifactId>
  187. </plugin>
  188. <plugin>
  189. <groupId>io.fabric8</groupId>
  190. <artifactId>docker-maven-plugin</artifactId>
  191. <configuration>
  192. <skip>false</skip>
  193. </configuration>
  194. </plugin>
  195. </plugins>
  196. <resources>
  197. <resource>
  198. <directory>src/main/resources</directory>
  199. <filtering>true</filtering>
  200. <excludes>
  201. <exclude>**/*.xlsx</exclude>
  202. <exclude>**/*.xls</exclude>
  203. </excludes>
  204. </resource>
  205. <resource>
  206. <directory>src/main/resources</directory>
  207. <filtering>false</filtering>
  208. <includes>
  209. <include>**/*.xlsx</include>
  210. <include>**/*.xls</include>
  211. </includes>
  212. </resource>
  213. </resources>
  214. </build>
  215. </project>