pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. <groupId>com.sckw</groupId>
  7. <artifactId>sckw-common-bom</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>pom</packaging>
  10. <description>common依赖项</description>
  11. <properties>
  12. <maven.compiler.source>17</maven.compiler.source>
  13. <maven.compiler.target>17</maven.compiler.target>
  14. <project.basic.version>1.0.0</project.basic.version>
  15. </properties>
  16. <dependencyManagement>
  17. <dependencies>
  18. <!-- 核心模块 -->
  19. <dependency>
  20. <groupId>com.sckw</groupId>
  21. <artifactId>sckw-common-startup</artifactId>
  22. <version>${project.basic.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.sckw</groupId>
  26. <artifactId>sckw-common-core</artifactId>
  27. <version>${project.basic.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.sckw</groupId>
  31. <artifactId>sckw-common-mongo</artifactId>
  32. <version>${project.basic.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.sckw</groupId>
  36. <artifactId>sckw-common-xxljob</artifactId>
  37. <version>${project.basic.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.sckw</groupId>
  41. <artifactId>sckw-common-stream</artifactId>
  42. <version>${project.basic.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.sckw</groupId>
  46. <artifactId>sckw-common-remote</artifactId>
  47. <version>${project.basic.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.sckw</groupId>
  51. <artifactId>sckw-common-redis</artifactId>
  52. <version>${project.basic.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.sckw</groupId>
  56. <artifactId>sckw-common-excel</artifactId>
  57. <version>${project.basic.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.sckw</groupId>
  61. <artifactId>sckw-common-datasource</artifactId>
  62. <version>${project.basic.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.sckw</groupId>
  66. <artifactId>sckw-common-sentinel</artifactId>
  67. <version>${project.basic.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.sckw</groupId>
  71. <artifactId>sckw-common-seata</artifactId>
  72. <version>${project.basic.version}</version>
  73. </dependency>
  74. </dependencies>
  75. </dependencyManagement>
  76. </project>