pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-maven-plugin</artifactId>
  77. <executions>
  78. <execution>
  79. <goals>
  80. <goal>repackage</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. <configuration>
  85. <excludes>
  86. <exclude>
  87. <groupId>org.projectlombok</groupId>
  88. <artifactId>lombok</artifactId>
  89. </exclude>
  90. </excludes>
  91. <mainClass>com.sckw.operation.OperationApplication</mainClass>
  92. </configuration>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>