pom.xml 3.9 KB

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