pom.xml 5.3 KB

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