pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.fjhx</groupId>
  7. <artifactId>bytesailing</artifactId>
  8. <version>1.0</version>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>code</module>
  12. <module>hx-admin</module>
  13. <module>hx-customer</module>
  14. <module>hx-ehsd</module>
  15. <module>hx-finance</module>
  16. <module>hx-iot</module>
  17. <module>hx-item</module>
  18. <module>hx-mail</module>
  19. <module>hx-mes</module>
  20. <module>hx-supply</module>
  21. <module>hx-wms</module>
  22. <module>hx-common</module>
  23. </modules>
  24. <properties>
  25. <maven.compiler.source>8</maven.compiler.source>
  26. <maven.compiler.target>8</maven.compiler.target>
  27. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  28. <hx.version>1.0</hx.version>
  29. </properties>
  30. <parent>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-parent</artifactId>
  33. <version>2.7.6</version>
  34. </parent>
  35. <!-- 依赖声明 -->
  36. <dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>com.fjhx</groupId>
  40. <artifactId>hx-base</artifactId>
  41. <version>1.0.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.fjhx</groupId>
  45. <artifactId>hx-admin</artifactId>
  46. <version>${hx.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.fjhx</groupId>
  50. <artifactId>hx-common</artifactId>
  51. <version>${hx.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.fjhx</groupId>
  55. <artifactId>hx-customer</artifactId>
  56. <version>${hx.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.fjhx</groupId>
  60. <artifactId>hx-ehsd</artifactId>
  61. <version>${hx.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.fjhx</groupId>
  65. <artifactId>hx-finance</artifactId>
  66. <version>${hx.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.fjhx</groupId>
  70. <artifactId>hx-iot</artifactId>
  71. <version>${hx.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.fjhx</groupId>
  75. <artifactId>hx-item</artifactId>
  76. <version>${hx.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.fjhx</groupId>
  80. <artifactId>hx-mail</artifactId>
  81. <version>${hx.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.fjhx</groupId>
  85. <artifactId>hx-mes</artifactId>
  86. <version>${hx.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.fjhx</groupId>
  90. <artifactId>hx-supply</artifactId>
  91. <version>${hx.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.fjhx</groupId>
  95. <artifactId>hx-wms</artifactId>
  96. <version>${hx.version}</version>
  97. </dependency>
  98. </dependencies>
  99. </dependencyManagement>
  100. </project>