pom.xml 4.6 KB

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