pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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-api</artifactId>
  12. <packaging>pom</packaging>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. <hx.version>3.2.0</hx.version>
  17. <bladex.version>2.8.2.RELEASE</bladex.version>
  18. </properties>
  19. <modules>
  20. <module>iot-management-api</module>
  21. <module>storage-api</module>
  22. </modules>
  23. <dependencyManagement>
  24. <dependencies>
  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>org.springblade</groupId>
  34. <artifactId>blade-starter-mybatis</artifactId>
  35. <version>${bladex.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.fjhx</groupId>
  39. <artifactId>hx-tool</artifactId>
  40. <version>${hx.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.fjhx</groupId>
  44. <artifactId>iot-management-entity</artifactId>
  45. <version>${hx.version}</version>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. </project>