pom.xml 4.3 KB

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