pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. <parent>
  7. <groupId>com.sckw</groupId>
  8. <artifactId>sckw-modules</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>sckw-transport</artifactId>
  12. <properties>
  13. <maven.compiler.source>17</maven.compiler.source>
  14. <maven.compiler.target>17</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <!-- 核心模块 -->
  19. <dependency>
  20. <groupId>com.sckw</groupId>
  21. <artifactId>sckw-common-startup</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.sckw</groupId>
  25. <artifactId>sckw-common-core</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.sckw</groupId>
  29. <artifactId>sckw-common-remote</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.sckw</groupId>
  33. <artifactId>sckw-common-datasource</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.sckw</groupId>
  37. <artifactId>sckw-common-redis</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.sckw</groupId>
  41. <artifactId>sckw-common-excel</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.sckw</groupId>
  45. <artifactId>sckw-system-api</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.sckw</groupId>
  49. <artifactId>sckw-fleet-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.sckw</groupId>
  53. <artifactId>sckw-product-api</artifactId>
  54. <version>1.0.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.sckw</groupId>
  58. <artifactId>sckw-common-seata</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.sckw</groupId>
  62. <artifactId>sckw-common-sentinel</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.sckw</groupId>
  66. <artifactId>sckw-common-mongo</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.sckw</groupId>
  70. <artifactId>sckw-common-stream</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.sckw</groupId>
  74. <artifactId>sckw-transport-api</artifactId>
  75. <version>1.0.0</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.sckw</groupId>
  79. <artifactId>sckw-order-api</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.sckw</groupId>
  83. <artifactId>sckw-contract-api</artifactId>
  84. <version>1.0.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.sckw</groupId>
  88. <artifactId>sckw-manage-api</artifactId>
  89. <version>1.0.0</version>
  90. </dependency>
  91. <!-- validation -->
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-validation</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.sckw</groupId>
  98. <artifactId>sckw-common-log</artifactId>
  99. <version>1.0.0</version>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. <executions>
  108. <execution>
  109. <goals>
  110. <goal>repackage</goal>
  111. </goals>
  112. </execution>
  113. </executions>
  114. <configuration>
  115. <mainClass>com.sckw.transport.TransPortApplication</mainClass>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>