pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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>product-library</module>
  23. <module>file-service</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>iot-management-api</artifactId>
  48. <version>${hx.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.fjhx</groupId>
  52. <artifactId>storage-api</artifactId>
  53. <version>${hx.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.fjhx</groupId>
  57. <artifactId>product-library-api</artifactId>
  58. <version>${hx.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.fjhx</groupId>
  62. <artifactId>file-service-api</artifactId>
  63. <version>${hx.version}</version>
  64. </dependency>
  65. </dependencies>
  66. </dependencyManagement>
  67. <dependencies>
  68. <dependency>
  69. <groupId>com.fjhx</groupId>
  70. <artifactId>hx-tool</artifactId>
  71. </dependency>
  72. </dependencies>
  73. <build>
  74. <resources>
  75. <resource>
  76. <directory>src/main/resources</directory>
  77. </resource>
  78. <resource>
  79. <directory>src/main/java</directory>
  80. <includes>
  81. <include>**/*.xml</include>
  82. </includes>
  83. </resource>
  84. </resources>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. <version>2.3.1.RELEASE</version>
  90. <executions>
  91. <execution>
  92. <goals>
  93. <goal>repackage</goal>
  94. </goals>
  95. </execution>
  96. </executions>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. </project>