pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. </dependencies>
  86. <build>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. <executions>
  92. <execution>
  93. <goals>
  94. <goal>repackage</goal>
  95. </goals>
  96. </execution>
  97. </executions>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>