pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>imcs-admin-boot</artifactId>
  7. <groupId>com.github.zuihou</groupId>
  8. <version>b.2.5-SNAPSHOT</version>
  9. <relativePath>../</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>imcs-authority-server</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>权限认证服务启动模块</description>
  15. <properties>
  16. <!-- 跳过测试 -->
  17. <skipTests>true</skipTests>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.github.zuihou</groupId>
  22. <artifactId>imcs-oauth-controller</artifactId>
  23. <version>${imcs-project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.github.zuihou</groupId>
  27. <artifactId>imcs-authority-controller</artifactId>
  28. <version>${imcs-project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.github.zuihou</groupId>
  32. <artifactId>imcs-tenant-controller</artifactId>
  33. <version>${imcs-project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.github.zuihou</groupId>
  37. <artifactId>imcs-msgs-controller</artifactId>
  38. <version>${imcs-project.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.github.zuihou</groupId>
  42. <artifactId>imcs-sms-controller</artifactId>
  43. <version>${imcs-project.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.github.zuihou</groupId>
  47. <artifactId>imcs-file-controller</artifactId>
  48. <version>${imcs-project.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.github.zuihou</groupId>
  52. <artifactId>imcs-tenant-entity</artifactId>
  53. <version>${imcs-project.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.github.zuihou</groupId>
  57. <artifactId>imcs-business-controller</artifactId>
  58. <version>${imcs-project.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.github.zuihou</groupId>
  62. <artifactId>imcs-wms-controller</artifactId>
  63. <version>${imcs-project.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.github.zuihou</groupId>
  67. <artifactId>zuihou-jwt-starter</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.github.zuihou</groupId>
  71. <artifactId>zuihou-swagger2-starter</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.github.zuihou</groupId>
  75. <artifactId>zuihou-validator-starter</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.github.zuihou</groupId>
  79. <artifactId>zuihou-xss-starter</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.github.zuihou</groupId>
  83. <artifactId>zuihou-mq-starter</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.github.zuihou</groupId>
  87. <artifactId>zuihou-j2cache-starter</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-web</artifactId>
  92. <exclusions>
  93. <exclusion>
  94. <groupId>org.apache.tomcat.embed</groupId>
  95. <artifactId>tomcat-embed-websocket</artifactId>
  96. </exclusion>
  97. <exclusion>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-tomcat</artifactId>
  100. </exclusion>
  101. </exclusions>
  102. </dependency>
  103. <!--RabbitMQ依赖-->
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-amqp</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-undertow</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-aop</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-starter-actuator</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.baomidou</groupId>
  122. <artifactId>mybatis-plus-boot-starter</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>cn.afterturn</groupId>
  126. <artifactId>easypoi-spring-boot-starter</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-starter-test</artifactId>
  131. <scope>test</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.google.code.gson</groupId>
  135. <artifactId>gson</artifactId>
  136. <scope>test</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.jsoup</groupId>
  140. <artifactId>jsoup</artifactId>
  141. <scope>test</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.quartz-scheduler</groupId>
  145. <artifactId>quartz</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-starter-websocket</artifactId>
  150. </dependency>
  151. <!-- xxl-job-core -->
  152. <dependency>
  153. <groupId>com.github.zuihou</groupId>
  154. <artifactId>imcs-jobs-core</artifactId>
  155. <version>${imcs-project.version}</version>
  156. </dependency>
  157. <!--localDateTime 序列化 -->
  158. <dependency>
  159. <groupId>com.fasterxml.jackson.datatype</groupId>
  160. <artifactId>jackson-datatype-jsr310</artifactId>
  161. </dependency>
  162. </dependencies>
  163. <build>
  164. <plugins>
  165. <plugin>
  166. <groupId>org.springframework.boot</groupId>
  167. <artifactId>spring-boot-maven-plugin</artifactId>
  168. <executions>
  169. <execution>
  170. <goals>
  171. <goal>repackage</goal>
  172. </goals>
  173. </execution>
  174. </executions>
  175. </plugin>
  176. <!-- docker打包插件 -->
  177. <plugin>
  178. <groupId>com.spotify</groupId>
  179. <artifactId>dockerfile-maven-plugin</artifactId>
  180. <version>${dockerfile-maven-plugin.version}</version>
  181. <configuration>
  182. <repository>${docker.image.prefix}/${project.artifactId}</repository>
  183. <tag>${project.version}</tag>
  184. <buildArgs>
  185. <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
  186. </buildArgs>
  187. </configuration>
  188. </plugin>
  189. </plugins>
  190. </build>
  191. </project>