pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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>${example.revision}</version>
  12. <artifactId>sckw-example</artifactId>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <upgrade.version>1.1.0</upgrade.version>
  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-mongo</artifactId>
  34. <version>${basic.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.sckw</groupId>
  38. <artifactId>sckw-common-xxljob</artifactId>
  39. <version>${basic.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.sckw</groupId>
  43. <artifactId>sckw-common-stream</artifactId>
  44. <version>${basic.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.sckw</groupId>
  48. <artifactId>sckw-common-remote</artifactId>
  49. <version>${basic.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.sckw</groupId>
  53. <artifactId>sckw-common-redis</artifactId>
  54. <version>${basic.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.sckw</groupId>
  58. <artifactId>sckw-common-excel</artifactId>
  59. <version>${basic.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.sckw</groupId>
  63. <artifactId>sckw-common-datasource</artifactId>
  64. <version>${basic.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.sckw</groupId>
  68. <artifactId>sckw-common-seata</artifactId>
  69. <version>${basic.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.sckw</groupId>
  73. <artifactId>sckw-common-sentinel</artifactId>
  74. <version>${basic.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.sckw</groupId>
  78. <artifactId>sckw-system-api</artifactId>
  79. <version>${basic.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.sckw</groupId>
  83. <artifactId>sckw-file-api</artifactId>
  84. <version>${basic.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.sckw</groupId>
  88. <artifactId>sckw-message-api</artifactId>
  89. <version>${basic.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.sckw</groupId>
  93. <artifactId>sckw-order-api</artifactId>
  94. <version>${basic.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.sckw</groupId>
  98. <artifactId>sckw-payment-api</artifactId>
  99. <version>${basic.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.sckw</groupId>
  103. <artifactId>sckw-transport-api</artifactId>
  104. <version>${basic.version}</version>
  105. </dependency>
  106. <!--junit-->
  107. <dependency>
  108. <groupId>junit</groupId>
  109. <artifactId>junit</artifactId>
  110. <scope>test</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-test</artifactId>
  115. <scope>test</scope>
  116. </dependency>
  117. </dependencies>
  118. </project>