pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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-iot</module>
  16. <module>hx-item</module>
  17. <module>hx-mail</module>
  18. <module>hx-mes</module>
  19. <module>hx-supply</module>
  20. <module>hx-wms</module>
  21. <module>hx-common</module>
  22. <module>hx-oa</module>
  23. <module>hx-purchase</module>
  24. <module>hx-account</module>
  25. <module>hx-sale</module>
  26. <module>hx-dingding</module>
  27. <module>hx-form</module>
  28. </modules>
  29. <properties>
  30. <maven.compiler.source>8</maven.compiler.source>
  31. <maven.compiler.target>8</maven.compiler.target>
  32. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  33. <hx.version>1.0</hx.version>
  34. </properties>
  35. <parent>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-parent</artifactId>
  38. <version>2.7.6</version>
  39. </parent>
  40. <!-- 依赖声明 -->
  41. <dependencyManagement>
  42. <dependencies>
  43. <dependency>
  44. <groupId>com.fjhx</groupId>
  45. <artifactId>hx-base</artifactId>
  46. <version>1.0.2</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.fjhx</groupId>
  50. <artifactId>hx-admin</artifactId>
  51. <version>${hx.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.fjhx</groupId>
  55. <artifactId>hx-common</artifactId>
  56. <version>${hx.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.fjhx</groupId>
  60. <artifactId>hx-customer</artifactId>
  61. <version>${hx.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.fjhx</groupId>
  65. <artifactId>hx-ehsd</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. <dependency>
  99. <groupId>com.fjhx</groupId>
  100. <artifactId>hx-oa</artifactId>
  101. <version>${hx.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.fjhx</groupId>
  105. <artifactId>hx-purchase</artifactId>
  106. <version>${hx.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.fjhx</groupId>
  110. <artifactId>hx-sale</artifactId>
  111. <version>${hx.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.fjhx</groupId>
  115. <artifactId>hx-account</artifactId>
  116. <version>${hx.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.fjhx</groupId>
  120. <artifactId>hx-dingding</artifactId>
  121. <version>${hx.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.fjhx</groupId>
  125. <artifactId>hx-form</artifactId>
  126. <version>${hx.version}</version>
  127. </dependency>
  128. </dependencies>
  129. </dependencyManagement>
  130. </project>