pom.xml 3.4 KB

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