pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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>${manage.revision}</version>
  12. <artifactId>sckw-manage</artifactId>
  13. <description>企业管理服务</description>
  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-stream</artifactId>
  49. <version>${basic.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.sckw</groupId>
  53. <artifactId>sckw-common-seata</artifactId>
  54. <version>${basic.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.sckw</groupId>
  58. <artifactId>sckw-system-api</artifactId>
  59. <version>${basic.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.sckw</groupId>
  63. <artifactId>sckw-common-excel</artifactId>
  64. <version>${basic.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.sckw</groupId>
  68. <artifactId>sckw-manage-api</artifactId>
  69. <!-- <version>1.0.0</version>-->
  70. <version>${basic.version}</version>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.sckw</groupId>
  75. <artifactId>sckw-order-api</artifactId>
  76. <version>${basic.version}</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.sckw</groupId>
  81. <artifactId>sckw-transport-api</artifactId>
  82. <version>${basic.version}</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.sckw</groupId>
  87. <artifactId>sckw-payment-api</artifactId>
  88. <version>${basic.version}</version>
  89. <scope>compile</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.sckw</groupId>
  93. <artifactId>sckw-common-log</artifactId>
  94. <!-- <version>1.0.0</version>-->
  95. <version>${basic.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springdoc</groupId>
  99. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  100. <version>2.6.0</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.github.xiaoymin</groupId>
  104. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  105. <version>4.5.0</version>
  106. </dependency>
  107. <!-- MyBatis-Flex 依赖 (Spring Boot 3.x 兼容版本) -->
  108. <dependency>
  109. <groupId>com.mybatis-flex</groupId>
  110. <artifactId>mybatis-flex-spring-boot3-starter</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.mybatis-flex</groupId>
  114. <artifactId>mybatis-flex-processor</artifactId>
  115. <scope>provided</scope>
  116. </dependency>
  117. <!-- Spring Boot Test Starter -->
  118. <dependency>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-starter-test</artifactId>
  121. <scope>test</scope>
  122. </dependency>
  123. </dependencies>
  124. <build>
  125. <plugins>
  126. <plugin>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-maven-plugin</artifactId>
  129. <executions>
  130. <execution>
  131. <goals>
  132. <goal>repackage</goal>
  133. </goals>
  134. </execution>
  135. </executions>
  136. <configuration>
  137. <excludes>
  138. <exclude>
  139. <groupId>org.projectlombok</groupId>
  140. <artifactId>lombok</artifactId>
  141. </exclude>
  142. </excludes>
  143. <mainClass>com.sckw.manage.ManageApplication</mainClass>
  144. </configuration>
  145. </plugin>
  146. </plugins>
  147. </build>
  148. </project>