pom.xml 4.0 KB

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