pom.xml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>fjhx-cloud</artifactId>
  7. <groupId>com.fjhx</groupId>
  8. <version>3.2.0</version>
  9. </parent>
  10. <groupId>org.springblade</groupId>
  11. <artifactId>BladeX-Tool</artifactId>
  12. <version>2.8.2.RELEASE</version>
  13. <packaging>pom</packaging>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <maven.plugin.version>3.8.1</maven.plugin.version>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <spring.boot.version>2.3.12.RELEASE</spring.boot.version>
  20. <spring.cloud.version>Hoxton.SR11</spring.cloud.version>
  21. <spring.platform.version>Cairo-SR8</spring.platform.version>
  22. </properties>
  23. <modules>
  24. <module>blade-bom</module>
  25. <module>blade-core-auto</module>
  26. <module>blade-core-boot</module>
  27. <module>blade-core-cloud</module>
  28. <module>blade-core-context</module>
  29. <module>blade-core-db</module>
  30. <module>blade-core-launch</module>
  31. <module>blade-core-log4j2</module>
  32. <module>blade-core-secure</module>
  33. <module>blade-core-test</module>
  34. <module>blade-core-tool</module>
  35. <module>blade-starter-actuate</module>
  36. <module>blade-starter-api-crypto</module>
  37. <module>blade-starter-auth</module>
  38. <module>blade-starter-cache</module>
  39. <module>blade-starter-datascope</module>
  40. <module>blade-starter-develop</module>
  41. <module>blade-starter-ehcache</module>
  42. <module>blade-starter-excel</module>
  43. <module>blade-starter-http</module>
  44. <module>blade-starter-jwt</module>
  45. <module>blade-starter-log</module>
  46. <module>blade-starter-metrics</module>
  47. <module>blade-starter-mongo</module>
  48. <module>blade-starter-mybatis</module>
  49. <module>blade-starter-oss</module>
  50. <module>blade-starter-prometheus</module>
  51. <module>blade-starter-redis</module>
  52. <module>blade-starter-report</module>
  53. <module>blade-starter-ribbon</module>
  54. <module>blade-starter-sms</module>
  55. <module>blade-starter-social</module>
  56. <module>blade-starter-swagger</module>
  57. <module>blade-starter-tenant</module>
  58. <module>blade-starter-trace</module>
  59. <module>blade-starter-transaction</module>
  60. </modules>
  61. <dependencyManagement>
  62. <dependencies>
  63. <dependency>
  64. <groupId>org.springblade.platform</groupId>
  65. <artifactId>blade-bom</artifactId>
  66. <version>${project.version}</version>
  67. <type>pom</type>
  68. <scope>import</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-dependencies</artifactId>
  73. <version>${spring.boot.version}</version>
  74. <type>pom</type>
  75. <scope>import</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.cloud</groupId>
  79. <artifactId>spring-cloud-dependencies</artifactId>
  80. <version>${spring.cloud.version}</version>
  81. <type>pom</type>
  82. <scope>import</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>io.spring.platform</groupId>
  86. <artifactId>platform-bom</artifactId>
  87. <version>${spring.platform.version}</version>
  88. <type>pom</type>
  89. <scope>import</scope>
  90. </dependency>
  91. </dependencies>
  92. </dependencyManagement>
  93. <dependencies>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-aop</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-starter-test</artifactId>
  101. <scope>test</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-configuration-processor</artifactId>
  106. <optional>true</optional>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.retry</groupId>
  110. <artifactId>spring-retry</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.projectlombok</groupId>
  114. <artifactId>lombok</artifactId>
  115. <scope>provided</scope>
  116. </dependency>
  117. </dependencies>
  118. <build>
  119. <finalName>${project.name}</finalName>
  120. <resources>
  121. <resource>
  122. <directory>src/main/resources</directory>
  123. </resource>
  124. <resource>
  125. <directory>src/main/java</directory>
  126. <includes>
  127. <include>**/*.xml</include>
  128. </includes>
  129. </resource>
  130. </resources>
  131. <plugins>
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-compiler-plugin</artifactId>
  135. <version>${maven.plugin.version}</version>
  136. <configuration>
  137. <source>${java.version}</source>
  138. <target>${java.version}</target>
  139. <encoding>UTF-8</encoding>
  140. <compilerArgs>
  141. <arg>-parameters</arg>
  142. </compilerArgs>
  143. </configuration>
  144. </plugin>
  145. <!-- 打jar包 -->
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-jar-plugin</artifactId>
  149. <version>3.1.0</version>
  150. </plugin>
  151. </plugins>
  152. </build>
  153. <repositories>
  154. <repository>
  155. <id>aliyun-repos</id>
  156. <url>https://maven.aliyun.com/nexus/content/groups/public/</url>
  157. <snapshots>
  158. <enabled>false</enabled>
  159. </snapshots>
  160. </repository>
  161. <repository>
  162. <id>blade-release</id>
  163. <name>Release Repository</name>
  164. <url>http://nexus.bladex.vip/repository/maven-releases/</url>
  165. </repository>
  166. </repositories>
  167. <pluginRepositories>
  168. <pluginRepository>
  169. <id>aliyun-plugin</id>
  170. <url>https://maven.aliyun.com/nexus/content/groups/public/</url>
  171. <snapshots>
  172. <enabled>false</enabled>
  173. </snapshots>
  174. </pluginRepository>
  175. </pluginRepositories>
  176. <distributionManagement>
  177. <repository>
  178. <id>blade-release</id>
  179. <name>Release Repository</name>
  180. <url>http://nexus.bladex.vip/repository/maven-releases/</url>
  181. </repository>
  182. </distributionManagement>
  183. <profiles>
  184. <profile>
  185. <id>develop</id>
  186. <build>
  187. <plugins>
  188. <!-- 打source包 -->
  189. <plugin>
  190. <groupId>org.apache.maven.plugins</groupId>
  191. <artifactId>maven-source-plugin</artifactId>
  192. <version>3.0.1</version>
  193. <configuration>
  194. <attach>true</attach>
  195. </configuration>
  196. <executions>
  197. <execution>
  198. <phase>compile</phase>
  199. <goals>
  200. <goal>jar</goal>
  201. </goals>
  202. </execution>
  203. </executions>
  204. </plugin>
  205. </plugins>
  206. </build>
  207. </profile>
  208. </profiles>
  209. </project>