pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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-order</artifactId>
  12. <properties>
  13. <maven.compiler.source>17</maven.compiler.source>
  14. <maven.compiler.target>17</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.sckw</groupId>
  20. <artifactId>sckw-common-startup</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.sckw</groupId>
  24. <artifactId>sckw-common-core</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.sckw</groupId>
  28. <artifactId>sckw-common-datasource</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.sckw</groupId>
  32. <artifactId>sckw-common-remote</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.sckw</groupId>
  36. <artifactId>sckw-common-stream</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.sckw</groupId>
  40. <artifactId>sckw-common-seata</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.sckw</groupId>
  44. <artifactId>sckw-common-sentinel</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.sckw</groupId>
  48. <artifactId>sckw-common-excel</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.sckw</groupId>
  52. <artifactId>sckw-system-api</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.sckw</groupId>
  56. <artifactId>sckw-common-mongo</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.sckw</groupId>
  60. <artifactId>sckw-order-api</artifactId>
  61. <version>1.0.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.sckw</groupId>
  65. <artifactId>sckw-product-api</artifactId>
  66. <version>1.0.0</version>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-maven-plugin</artifactId>
  74. <executions>
  75. <execution>
  76. <goals>
  77. <goal>repackage</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>