pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. <parent>
  6. <artifactId>sckw-modules</artifactId>
  7. <groupId>com.sckw</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sckw-fleet</artifactId>
  12. <description>车队服务</description>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  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-seata</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.sckw</groupId>
  45. <artifactId>sckw-common-sentinel</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.sckw</groupId>
  49. <artifactId>sckw-common-excel</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.sckw</groupId>
  53. <artifactId>sckw-system-api</artifactId>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. <executions>
  62. <execution>
  63. <goals>
  64. <goal>repackage</goal>
  65. </goals>
  66. </execution>
  67. </executions>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>