pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. <version>${system.revision}</version>
  12. <artifactId>sckw-system</artifactId>
  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. <version>${basic.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.sckw</groupId>
  26. <artifactId>sckw-common-core</artifactId>
  27. <version>${basic.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.sckw</groupId>
  31. <artifactId>sckw-common-remote</artifactId>
  32. <version>${basic.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.sckw</groupId>
  36. <artifactId>sckw-common-datasource</artifactId>
  37. <version>${basic.version}</version>
  38. <exclusions>
  39. <!-- 排除 MyBatis-Flex,避免与 MyBatis-Plus 冲突 -->
  40. <exclusion>
  41. <groupId>com.mybatis-flex</groupId>
  42. <artifactId>mybatis-flex-spring-boot3-starter</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.sckw</groupId>
  48. <artifactId>sckw-common-redis</artifactId>
  49. <version>${basic.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.sckw</groupId>
  53. <artifactId>sckw-common-stream</artifactId>
  54. <version>${basic.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.sckw</groupId>
  58. <artifactId>sckw-common-seata</artifactId>
  59. <version>${basic.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.sckw</groupId>
  63. <artifactId>sckw-common-sentinel</artifactId>
  64. <version>${basic.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.sckw</groupId>
  68. <artifactId>sckw-system-api</artifactId>
  69. <version>${basic.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.sckw</groupId>
  73. <artifactId>sckw-common-log</artifactId>
  74. <version>${basic.version}</version>
  75. <!-- <version>1.0.0</version>-->
  76. </dependency>
  77. <dependency>
  78. <groupId>com.sckw</groupId>
  79. <artifactId>sckw-transport-api</artifactId>
  80. <version>${basic.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.sckw</groupId>
  84. <artifactId>sckw-common-excel</artifactId>
  85. <version>${basic.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springdoc</groupId>
  89. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  90. <version>2.6.0</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.github.xiaoymin</groupId>
  94. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  95. <version>4.5.0</version>
  96. </dependency>
  97. <!-- MyBatis-Flex 依赖 (Spring Boot 3.x 兼容版本) -->
  98. <dependency>
  99. <groupId>com.mybatis-flex</groupId>
  100. <artifactId>mybatis-flex-spring-boot3-starter</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.mybatis-flex</groupId>
  104. <artifactId>mybatis-flex-processor</artifactId>
  105. <scope>provided</scope>
  106. </dependency>
  107. <!-- Spring Boot Test Starter -->
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-test</artifactId>
  111. <scope>test</scope>
  112. </dependency>
  113. </dependencies>
  114. <build>
  115. <plugins>
  116. <plugin>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-maven-plugin</artifactId>
  119. <executions>
  120. <execution>
  121. <goals>
  122. <goal>repackage</goal>
  123. </goals>
  124. </execution>
  125. </executions>
  126. <configuration>
  127. <mainClass>com.sckw.system.SystemApplication</mainClass>
  128. </configuration>
  129. </plugin>
  130. </plugins>
  131. </build>
  132. </project>