pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. <module>hx-jxst</module>
  29. </modules>
  30. <properties>
  31. <maven.compiler.source>8</maven.compiler.source>
  32. <maven.compiler.target>8</maven.compiler.target>
  33. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  34. <hx.version>1.0</hx.version>
  35. </properties>
  36. <parent>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-parent</artifactId>
  39. <version>2.7.6</version>
  40. </parent>
  41. <!-- 依赖声明 -->
  42. <dependencyManagement>
  43. <dependencies>
  44. <dependency>
  45. <groupId>com.fjhx</groupId>
  46. <artifactId>hx-base</artifactId>
  47. <version>1.0.2</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.fjhx</groupId>
  51. <artifactId>hx-admin</artifactId>
  52. <version>${hx.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.fjhx</groupId>
  56. <artifactId>hx-common</artifactId>
  57. <version>${hx.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.fjhx</groupId>
  61. <artifactId>hx-customer</artifactId>
  62. <version>${hx.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.fjhx</groupId>
  66. <artifactId>hx-ehsd</artifactId>
  67. <version>${hx.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.fjhx</groupId>
  71. <artifactId>hx-iot</artifactId>
  72. <version>${hx.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.fjhx</groupId>
  76. <artifactId>hx-item</artifactId>
  77. <version>${hx.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.fjhx</groupId>
  81. <artifactId>hx-mail</artifactId>
  82. <version>${hx.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.fjhx</groupId>
  86. <artifactId>hx-mes</artifactId>
  87. <version>${hx.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.fjhx</groupId>
  91. <artifactId>hx-supply</artifactId>
  92. <version>${hx.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.fjhx</groupId>
  96. <artifactId>hx-wms</artifactId>
  97. <version>${hx.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.fjhx</groupId>
  101. <artifactId>hx-oa</artifactId>
  102. <version>${hx.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.fjhx</groupId>
  106. <artifactId>hx-purchase</artifactId>
  107. <version>${hx.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.fjhx</groupId>
  111. <artifactId>hx-sale</artifactId>
  112. <version>${hx.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.fjhx</groupId>
  116. <artifactId>hx-account</artifactId>
  117. <version>${hx.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.fjhx</groupId>
  121. <artifactId>hx-dingding</artifactId>
  122. <version>${hx.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.fjhx</groupId>
  126. <artifactId>hx-form</artifactId>
  127. <version>${hx.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.fjhx</groupId>
  131. <artifactId>hx-jxst</artifactId>
  132. <version>${hx.version}</version>
  133. </dependency>
  134. </dependencies>
  135. </dependencyManagement>
  136. </project>