pom.xml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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. <parent>
  6. <artifactId>raising</artifactId>
  7. <groupId>com.raising</groupId>
  8. <version>3.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>raising-admin-pro</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- 核心模块-->
  18. <dependency>
  19. <groupId>com.raising</groupId>
  20. <artifactId>raising-framework</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <!-- business业务模块-->
  24. <dependency>
  25. <groupId>com.raising</groupId>
  26. <artifactId>raising-upms</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. <!-- Application接口模块-->
  30. <dependency>
  31. <groupId>com.raising</groupId>
  32. <artifactId>raising-open-api</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <!-- spring-boot-devtools -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-devtools</artifactId>
  39. <optional>true</optional>
  40. </dependency>
  41. <!-- swagger2-->
  42. <dependency>
  43. <groupId>io.springfox</groupId>
  44. <artifactId>springfox-swagger2</artifactId>
  45. </dependency>
  46. <!-- 添加websocket依赖 -->
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-websocket</artifactId>
  50. <version>${spring-boot-starter-websocket.version}</version>
  51. </dependency>
  52. <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
  53. <dependency>
  54. <groupId>io.swagger</groupId>
  55. <artifactId>swagger-annotations</artifactId>
  56. <version>1.5.21</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.swagger</groupId>
  60. <artifactId>swagger-models</artifactId>
  61. <version>1.5.21</version>
  62. </dependency>
  63. <!-- swagger2-UI-->
  64. <dependency>
  65. <groupId>io.springfox</groupId>
  66. <artifactId>springfox-swagger-ui</artifactId>
  67. </dependency>
  68. <!-- Mysql驱动包 -->
  69. <dependency>
  70. <groupId>mysql</groupId>
  71. <artifactId>mysql-connector-java</artifactId>
  72. <version>${mysql.connector.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.baomidou</groupId>
  76. <artifactId>mybatis-plus-boot-starter</artifactId>
  77. <version>${mybatisplus.version}</version>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>com.baomidou</groupId>
  81. <artifactId>mybatis-plus-generator</artifactId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. <!--Linq表达式-->
  86. <dependency>
  87. <groupId>com.bestvike</groupId>
  88. <artifactId>linq</artifactId>
  89. <version>${bestvikelinq.version}</version>
  90. </dependency>
  91. <!--Hutool工具包-->
  92. <dependency>
  93. <groupId>cn.hutool</groupId>
  94. <artifactId>hutool-all</artifactId>
  95. <version>${hutool.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.projectlombok</groupId>
  99. <artifactId>lombok</artifactId>
  100. <version>${projectlombok.version}</version>
  101. <optional>true</optional>
  102. </dependency>
  103. <!--swagger-bootstrap-ui工具类-->
  104. <dependency>
  105. <groupId>com.github.xiaoymin</groupId>
  106. <artifactId>swagger-bootstrap-ui</artifactId>
  107. <version>${swagger-bootstrap-version}</version>
  108. </dependency>
  109. <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
  110. <dependency>
  111. <groupId>cn.dev33</groupId>
  112. <artifactId>sa-token-spring-boot-starter</artifactId>
  113. <version>${sa-token-version}</version>
  114. </dependency>
  115. <!-- Sa-Token 整合 Redis (使用jackson序列化方式) -->
  116. <dependency>
  117. <groupId>cn.dev33</groupId>
  118. <artifactId>sa-token-dao-redis-jackson</artifactId>
  119. <version>${sa-token-version}</version>
  120. </dependency>
  121. <!--TTL-->
  122. <dependency>
  123. <groupId>com.alibaba</groupId>
  124. <artifactId>transmittable-thread-local</artifactId>
  125. <version>${ttl.version}</version>
  126. </dependency>
  127. <!-- BeetlSQL的目标是提供开发高效,维护高效,运行高效的数据库访问框架,
  128. Git仓库: https://gitee.com/xiandafu/beetlsql
  129. 在线文档:https://www.kancloud.cn/xiandafu/beetlsql3_guide/1960060
  130. -->
  131. <dependency>
  132. <groupId>com.ibeetl</groupId>
  133. <artifactId>sql-springboot-starter</artifactId>
  134. <version>${beetlsql.version}</version>
  135. </dependency>
  136. <!--必须使用0.9以上的版本-->
  137. <dependency>
  138. <groupId>com.github.jsqlparser</groupId>
  139. <artifactId>jsqlparser</artifactId>
  140. <version>${jsqlparser.version}</version>
  141. </dependency>
  142. <!-- http://repo1.maven.org/maven2/com/xuxueli/xxl-job-core/ -->
  143. <dependency>
  144. <groupId>com.xuxueli</groupId>
  145. <artifactId>xxl-job-core</artifactId>
  146. <version>${xxljob.version}</version>
  147. </dependency>
  148. <!-- magic-api 接口平台工具 -->
  149. <!-- 文档: https://www.ssssssss.org/magic-api/pages/quick/start/ -->
  150. <dependency>
  151. <groupId>org.ssssssss</groupId>
  152. <artifactId>magic-api-spring-boot-starter</artifactId>
  153. <version>${magic.api.version}</version>
  154. </dependency>
  155. <!-- Magic-API Redis-插件 -->
  156. <dependency>
  157. <groupId>org.ssssssss</groupId>
  158. <artifactId>magic-api-plugin-redis</artifactId>
  159. <version>${magic.api.version}</version>
  160. </dependency>
  161. <!-- Magic-API Swagger-插件 -->
  162. <dependency>
  163. <groupId>org.ssssssss</groupId>
  164. <artifactId>magic-api-plugin-swagger</artifactId>
  165. <version>${magic.api.version}</version>
  166. </dependency>
  167. </dependencies>
  168. <build>
  169. <plugins>
  170. <plugin>
  171. <groupId>org.springframework.boot</groupId>
  172. <artifactId>spring-boot-maven-plugin</artifactId>
  173. <version>2.1.1.RELEASE</version>
  174. <configuration>
  175. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  176. </configuration>
  177. <executions>
  178. <execution>
  179. <goals>
  180. <goal>repackage</goal>
  181. </goals>
  182. </execution>
  183. </executions>
  184. </plugin>
  185. <plugin>
  186. <groupId>org.apache.maven.plugins</groupId>
  187. <artifactId>maven-war-plugin</artifactId>
  188. <version>3.0.0</version>
  189. <configuration>
  190. <failOnMissingWebXml>false</failOnMissingWebXml>
  191. <warName>${project.artifactId}</warName>
  192. </configuration>
  193. </plugin>
  194. </plugins>
  195. <finalName>${package.final.name}</finalName>
  196. </build>
  197. </project>