pom.xml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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>3.0.1.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.7.1</spring.boot.version>
  20. <spring.cloud.version>2021.0.3</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-flowable</module>
  44. <module>blade-starter-http</module>
  45. <module>blade-starter-jwt</module>
  46. <module>blade-starter-loadbalancer</module>
  47. <module>blade-starter-log</module>
  48. <module>blade-starter-metrics</module>
  49. <module>blade-starter-mongo</module>
  50. <module>blade-starter-mybatis</module>
  51. <module>blade-starter-oss</module>
  52. <module>blade-starter-prometheus</module>
  53. <module>blade-starter-redis</module>
  54. <module>blade-starter-report</module>
  55. <module>blade-starter-sms</module>
  56. <module>blade-starter-social</module>
  57. <module>blade-starter-swagger</module>
  58. <module>blade-starter-tenant</module>
  59. <module>blade-starter-trace</module>
  60. <module>blade-starter-transaction</module>
  61. </modules>
  62. <dependencyManagement>
  63. <dependencies>
  64. <dependency>
  65. <groupId>org.springblade.platform</groupId>
  66. <artifactId>blade-bom</artifactId>
  67. <version>${project.version}</version>
  68. <type>pom</type>
  69. <scope>import</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-dependencies</artifactId>
  74. <version>${spring.boot.version}</version>
  75. <type>pom</type>
  76. <scope>import</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.cloud</groupId>
  80. <artifactId>spring-cloud-dependencies</artifactId>
  81. <version>${spring.cloud.version}</version>
  82. <type>pom</type>
  83. <scope>import</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>io.spring.platform</groupId>
  87. <artifactId>platform-bom</artifactId>
  88. <version>${spring.platform.version}</version>
  89. <type>pom</type>
  90. <scope>import</scope>
  91. </dependency>
  92. </dependencies>
  93. </dependencyManagement>
  94. <dependencies>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-aop</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-test</artifactId>
  102. <scope>test</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-configuration-processor</artifactId>
  107. <optional>true</optional>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.retry</groupId>
  111. <artifactId>spring-retry</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.projectlombok</groupId>
  115. <artifactId>lombok</artifactId>
  116. <scope>provided</scope>
  117. </dependency>
  118. </dependencies>
  119. <build>
  120. <finalName>${project.name}</finalName>
  121. <resources>
  122. <resource>
  123. <directory>src/main/resources</directory>
  124. </resource>
  125. <resource>
  126. <directory>src/main/java</directory>
  127. <includes>
  128. <include>**/*.xml</include>
  129. </includes>
  130. </resource>
  131. </resources>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.apache.maven.plugins</groupId>
  135. <artifactId>maven-compiler-plugin</artifactId>
  136. <version>${maven.plugin.version}</version>
  137. <configuration>
  138. <source>${java.version}</source>
  139. <target>${java.version}</target>
  140. <encoding>UTF-8</encoding>
  141. <compilerArgs>
  142. <arg>-parameters</arg>
  143. </compilerArgs>
  144. </configuration>
  145. </plugin>
  146. <!-- 打jar包 -->
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-jar-plugin</artifactId>
  150. <version>3.1.0</version>
  151. </plugin>
  152. </plugins>
  153. </build>
  154. <repositories>
  155. <repository>
  156. <id>aliyun-repos</id>
  157. <url>https://maven.aliyun.com/repository/public/</url>
  158. <snapshots>
  159. <enabled>false</enabled>
  160. </snapshots>
  161. </repository>
  162. <repository>
  163. <id>blade-release</id>
  164. <name>Release Repository</name>
  165. <url>http://nexus.javablade.com/repository/maven-releases/</url>
  166. </repository>
  167. </repositories>
  168. <pluginRepositories>
  169. <pluginRepository>
  170. <id>aliyun-plugin</id>
  171. <url>https://maven.aliyun.com/repository/public/</url>
  172. <snapshots>
  173. <enabled>false</enabled>
  174. </snapshots>
  175. </pluginRepository>
  176. </pluginRepositories>
  177. <distributionManagement>
  178. <repository>
  179. <id>blade-release</id>
  180. <name>Release Repository</name>
  181. <url>http://nexus.javablade.com/repository/maven-releases/</url>
  182. </repository>
  183. </distributionManagement>
  184. <profiles>
  185. <profile>
  186. <id>develop</id>
  187. <build>
  188. <plugins>
  189. <!-- 打source包 -->
  190. <plugin>
  191. <groupId>org.apache.maven.plugins</groupId>
  192. <artifactId>maven-source-plugin</artifactId>
  193. <version>3.0.1</version>
  194. <configuration>
  195. <attach>true</attach>
  196. </configuration>
  197. <executions>
  198. <execution>
  199. <phase>compile</phase>
  200. <goals>
  201. <goal>jar</goal>
  202. </goals>
  203. </execution>
  204. </executions>
  205. </plugin>
  206. </plugins>
  207. </build>
  208. </profile>
  209. </profiles>
  210. </project>