pom.xml 3.9 KB

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