pom.xml 4.0 KB

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