pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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-item</module>
  15. <module>hx-mes</module>
  16. <module>hx-supply</module>
  17. <module>hx-wms</module>
  18. <module>hx-common</module>
  19. <module>hx-purchase</module>
  20. <module>hx-account</module>
  21. <module>hx-sale</module>
  22. <module>hx-form</module>
  23. <module>hx-jushuitan</module>
  24. <module>hx-iot</module>
  25. </modules>
  26. <properties>
  27. <maven.compiler.source>8</maven.compiler.source>
  28. <maven.compiler.target>8</maven.compiler.target>
  29. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  30. <hx.version>1.0</hx.version>
  31. </properties>
  32. <parent>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-parent</artifactId>
  35. <version>2.7.6</version>
  36. </parent>
  37. <!-- 依赖声明 -->
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>com.fjhx</groupId>
  42. <artifactId>hx-base</artifactId>
  43. <version>1.0.3</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.fjhx</groupId>
  47. <artifactId>hx-admin</artifactId>
  48. <version>${hx.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.fjhx</groupId>
  52. <artifactId>hx-common</artifactId>
  53. <version>${hx.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.fjhx</groupId>
  57. <artifactId>hx-customer</artifactId>
  58. <version>${hx.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.fjhx</groupId>
  62. <artifactId>hx-item</artifactId>
  63. <version>${hx.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.fjhx</groupId>
  67. <artifactId>hx-mes</artifactId>
  68. <version>${hx.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.fjhx</groupId>
  72. <artifactId>hx-supply</artifactId>
  73. <version>${hx.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.fjhx</groupId>
  77. <artifactId>hx-wms</artifactId>
  78. <version>${hx.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.fjhx</groupId>
  82. <artifactId>hx-purchase</artifactId>
  83. <version>${hx.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.fjhx</groupId>
  87. <artifactId>hx-sale</artifactId>
  88. <version>${hx.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.fjhx</groupId>
  92. <artifactId>hx-account</artifactId>
  93. <version>${hx.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.fjhx</groupId>
  97. <artifactId>hx-form</artifactId>
  98. <version>${hx.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.fjhx</groupId>
  102. <artifactId>hx-jushuitan</artifactId>
  103. <version>${hx.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.fjhx</groupId>
  107. <artifactId>hx-iot</artifactId>
  108. <version>${hx.version}</version>
  109. </dependency>
  110. </dependencies>
  111. </dependencyManagement>
  112. </project>