pom.xml 4.2 KB

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