pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-maven-plugin</artifactId>
  68. <executions>
  69. <execution>
  70. <goals>
  71. <goal>repackage</goal>
  72. </goals>
  73. </execution>
  74. </executions>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. </project>