pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. <artifactId>sckw-product</artifactId>
  12. <properties>
  13. <maven.compiler.source>17</maven.compiler.source>
  14. <maven.compiler.target>17</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.sckw</groupId>
  19. <artifactId>sckw-common-startup</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.sckw</groupId>
  23. <artifactId>sckw-common-core</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.sckw</groupId>
  27. <artifactId>sckw-common-datasource</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.sckw</groupId>
  31. <artifactId>sckw-common-stream</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.sckw</groupId>
  35. <artifactId>sckw-common-remote</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.sckw</groupId>
  39. <artifactId>sckw-common-seata</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.sckw</groupId>
  43. <artifactId>sckw-common-sentinel</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.sckw</groupId>
  47. <artifactId>sckw-common-excel</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.sckw</groupId>
  51. <artifactId>sckw-system-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.sckw</groupId>
  55. <artifactId>sckw-product-api</artifactId>
  56. <version>1.0.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.sckw</groupId>
  60. <artifactId>sckw-common-redis</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.sckw</groupId>
  64. <artifactId>sckw-payment-api</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.sckw</groupId>
  68. <artifactId>sckw-common-log</artifactId>
  69. <version>1.0.0</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. </plugin>
  85. </plugins>
  86. </build>
  87. </project>