pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. <version>${fleet.revision}</version>
  14. <properties>
  15. <maven.compiler.source>17</maven.compiler.source>
  16. <maven.compiler.target>17</maven.compiler.target>
  17. <basic.version>1.0.0</basic.version>
  18. </properties>
  19. <dependencies>
  20. <!-- 核心模块 -->
  21. <dependency>
  22. <groupId>com.sckw</groupId>
  23. <artifactId>sckw-common-startup</artifactId>
  24. <version>${basic.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.sckw</groupId>
  28. <artifactId>sckw-common-core</artifactId>
  29. <version>${basic.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.sckw</groupId>
  33. <artifactId>sckw-common-remote</artifactId>
  34. <version>${basic.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.sckw</groupId>
  38. <artifactId>sckw-common-datasource</artifactId>
  39. <version>${basic.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.sckw</groupId>
  43. <artifactId>sckw-common-redis</artifactId>
  44. <version>${basic.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.sckw</groupId>
  48. <artifactId>sckw-common-seata</artifactId>
  49. <version>${basic.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.sckw</groupId>
  53. <artifactId>sckw-common-sentinel</artifactId>
  54. <version>${basic.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.sckw</groupId>
  58. <artifactId>sckw-common-excel</artifactId>
  59. <version>${basic.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.sckw</groupId>
  63. <artifactId>sckw-system-api</artifactId>
  64. <version>${basic.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.sckw</groupId>
  68. <artifactId>sckw-fleet-api</artifactId>
  69. <version>${basic.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.sckw</groupId>
  73. <artifactId>sckw-transport-api</artifactId>
  74. <version>${basic.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.sckw</groupId>
  78. <artifactId>sckw-file-api</artifactId>
  79. <version>${basic.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.sckw</groupId>
  83. <artifactId>sckw-common-log</artifactId>
  84. <!-- <version>1.0.0</version>-->
  85. <version>${basic.version}</version>
  86. </dependency>
  87. </dependencies>
  88. <build>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-maven-plugin</artifactId>
  93. <executions>
  94. <execution>
  95. <goals>
  96. <goal>repackage</goal>
  97. </goals>
  98. </execution>
  99. </executions>
  100. <configuration>
  101. <mainClass>com.sckw.fleet.FleetApplication</mainClass>
  102. </configuration>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </project>