pom.xml 3.7 KB

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