pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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-serve</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. </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>iot-management-api</artifactId>
  42. <version>${hx.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.fjhx</groupId>
  46. <artifactId>storage-api</artifactId>
  47. <version>${hx.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.fjhx</groupId>
  51. <artifactId>product-library-api</artifactId>
  52. <version>${hx.version}</version>
  53. </dependency>
  54. </dependencies>
  55. </dependencyManagement>
  56. <build>
  57. <resources>
  58. <resource>
  59. <directory>src/main/resources</directory>
  60. </resource>
  61. <resource>
  62. <directory>src/main/java</directory>
  63. <includes>
  64. <include>**/*.xml</include>
  65. </includes>
  66. </resource>
  67. </resources>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. <version>2.3.1.RELEASE</version>
  73. <executions>
  74. <execution>
  75. <goals>
  76. <goal>repackage</goal>
  77. </goals>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>