pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.sckw</groupId>
  7. <artifactId>sckw-modules-bom</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>pom</packaging>
  10. <description>modules依赖项</description>
  11. <properties>
  12. <maven.compiler.source>17</maven.compiler.source>
  13. <maven.compiler.target>17</maven.compiler.target>
  14. </properties>
  15. <dependencyManagement>
  16. <dependencies>
  17. <!-- 核心模块 -->
  18. <dependency>
  19. <groupId>com.sckw</groupId>
  20. <artifactId>sckw-system-api</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.sckw</groupId>
  25. <artifactId>sckw-file-api</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.sckw</groupId>
  30. <artifactId>sckw-message-api</artifactId>
  31. <version>${project.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.sckw</groupId>
  35. <artifactId>sckw-fleet-api</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.sckw</groupId>
  40. <artifactId>sckw-transport-api</artifactId>
  41. <version>1.0.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.sckw</groupId>
  45. <artifactId>sckw-order-api</artifactId>
  46. <version>1.0.0</version>
  47. </dependency>
  48. </dependencies>
  49. </dependencyManagement>
  50. </project>