pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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-saas-project</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>saas-storage</module>
  21. <module>saas-entity</module>
  22. </modules>
  23. <dependencyManagement>
  24. <dependencies>
  25. <!-- blade -->
  26. <dependency>
  27. <groupId>org.springblade.platform</groupId>
  28. <artifactId>blade-bom</artifactId>
  29. <version>${bladex.version}</version>
  30. <type>pom</type>
  31. <scope>import</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.fjhx</groupId>
  35. <artifactId>hx-tool</artifactId>
  36. <version>${hx.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fjhx</groupId>
  40. <artifactId>client-util</artifactId>
  41. <version>${hx.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.fjhx</groupId>
  45. <artifactId>product-library</artifactId>
  46. <version>${hx.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.fjhx</groupId>
  50. <artifactId>iot-management-api</artifactId>
  51. <version>${hx.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.fjhx</groupId>
  55. <artifactId>storage-api</artifactId>
  56. <version>${hx.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.fjhx</groupId>
  60. <artifactId>service-file-api</artifactId>
  61. <version>${hx.version}</version>
  62. </dependency>
  63. </dependencies>
  64. </dependencyManagement>
  65. <dependencies>
  66. <dependency>
  67. <groupId>com.fjhx</groupId>
  68. <artifactId>hx-tool</artifactId>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <resources>
  73. <resource>
  74. <directory>src/main/resources</directory>
  75. </resource>
  76. <resource>
  77. <directory>src/main/java</directory>
  78. <includes>
  79. <include>**/*.xml</include>
  80. </includes>
  81. </resource>
  82. </resources>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-maven-plugin</artifactId>
  87. <version>2.3.1.RELEASE</version>
  88. <executions>
  89. <execution>
  90. <goals>
  91. <goal>repackage</goal>
  92. </goals>
  93. </execution>
  94. </executions>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. </project>