pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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>fjhx-cloud</artifactId>
  7. <groupId>com.fjhx</groupId>
  8. <version>3.2.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hx-saas-project</artifactId>
  12. <packaging>pom</packaging>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. <maven.plugin.version>3.8.1</maven.plugin.version>
  17. <java.version>1.8</java.version>
  18. <bladex.version>2.8.2.RELEASE</bladex.version>
  19. <hx.version>3.2.0</hx.version>
  20. <rocketmq.version>4.9.0</rocketmq.version>
  21. </properties>
  22. <modules>
  23. <module>saas-storage</module>
  24. <module>saas-entity</module>
  25. <module>saas-feign-api</module>
  26. <module>saas-rocketmq</module>
  27. </modules>
  28. <dependencyManagement>
  29. <dependencies>
  30. <!-- blade -->
  31. <dependency>
  32. <groupId>org.springblade.platform</groupId>
  33. <artifactId>blade-bom</artifactId>
  34. <version>${bladex.version}</version>
  35. <type>pom</type>
  36. <scope>import</scope>
  37. </dependency>
  38. <!-- <dependency>-->
  39. <!-- <groupId>org.apache.rocketmq</groupId>-->
  40. <!-- <artifactId>rocketmq-client</artifactId>-->
  41. <!-- <version>4.5.2</version>-->
  42. <!-- </dependency>-->
  43. <dependency>
  44. <groupId>com.fjhx</groupId>
  45. <artifactId>hx-tool</artifactId>
  46. <version>${hx.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.fjhx</groupId>
  50. <artifactId>client-util</artifactId>
  51. <version>${hx.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.fjhx</groupId>
  55. <artifactId>product-library</artifactId>
  56. <version>${hx.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.fjhx</groupId>
  60. <artifactId>iot-management-api</artifactId>
  61. <version>${hx.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.fjhx</groupId>
  65. <artifactId>storage-api</artifactId>
  66. <version>${hx.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.fjhx</groupId>
  70. <artifactId>service-file-api</artifactId>
  71. <version>${hx.version}</version>
  72. </dependency>
  73. </dependencies>
  74. </dependencyManagement>
  75. <dependencies>
  76. <dependency>
  77. <groupId>com.fjhx</groupId>
  78. <artifactId>hx-tool</artifactId>
  79. </dependency>
  80. </dependencies>
  81. <build>
  82. <resources>
  83. <resource>
  84. <directory>src/main/java</directory>
  85. <includes>
  86. <include>**/*.xml</include>
  87. </includes>
  88. </resource>
  89. <resource>
  90. <directory>src/main/resources</directory>
  91. <includes>
  92. <include>**/*</include>
  93. </includes>
  94. </resource>
  95. </resources>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. <version>2.3.1.RELEASE</version>
  101. <executions>
  102. <execution>
  103. <goals>
  104. <goal>repackage</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-compiler-plugin</artifactId>
  112. <configuration>
  113. <target>${java.version}</target>
  114. <source>${java.version}</source>
  115. <encoding>UTF-8</encoding>
  116. <compilerArgs>
  117. <arg>-parameters</arg>
  118. </compilerArgs>
  119. </configuration>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. </project>