pom.xml 3.5 KB

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