pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. <version>${order.revision}</version>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.sckw</groupId>
  21. <artifactId>sckw-common-startup</artifactId>
  22. <version>${basic.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.sckw</groupId>
  26. <artifactId>sckw-common-core</artifactId>
  27. <version>${basic.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.sckw</groupId>
  31. <artifactId>sckw-common-datasource</artifactId>
  32. <version>${basic.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.sckw</groupId>
  36. <artifactId>sckw-common-remote</artifactId>
  37. <version>${basic.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.sckw</groupId>
  41. <artifactId>sckw-common-stream</artifactId>
  42. <version>${basic.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.sckw</groupId>
  46. <artifactId>sckw-common-seata</artifactId>
  47. <version>${basic.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.sckw</groupId>
  51. <artifactId>sckw-common-sentinel</artifactId>
  52. <version>${basic.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.sckw</groupId>
  56. <artifactId>sckw-common-excel</artifactId>
  57. <version>${basic.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.sckw</groupId>
  61. <artifactId>sckw-system-api</artifactId>
  62. <version>${basic.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.sckw</groupId>
  66. <artifactId>sckw-common-mongo</artifactId>
  67. <version>${basic.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.sckw</groupId>
  71. <artifactId>sckw-order-api</artifactId>
  72. <version>${basic.version}</version>
  73. <!-- <version>1.0.0</version>-->
  74. </dependency>
  75. <dependency>
  76. <groupId>com.sckw</groupId>
  77. <artifactId>sckw-product-api</artifactId>
  78. <version>${basic.version}</version>
  79. <!-- <version>1.0.0</version>-->
  80. </dependency>
  81. <dependency>
  82. <groupId>com.sckw</groupId>
  83. <artifactId>sckw-contract-api</artifactId>
  84. <version>${basic.version}</version>
  85. <!-- <version>1.0.0</version>-->
  86. </dependency>
  87. <dependency>
  88. <groupId>com.sckw</groupId>
  89. <artifactId>sckw-payment-api</artifactId>
  90. <!-- <version>1.0.0</version>-->
  91. <version>${basic.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.sckw</groupId>
  95. <artifactId>sckw-transport-api</artifactId>
  96. <version>${basic.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.sckw</groupId>
  100. <artifactId>sckw-manage-api</artifactId>
  101. <version>${basic.version}</version>
  102. <!-- <version>1.0.0</version>-->
  103. </dependency>
  104. <dependency>
  105. <groupId>com.sckw</groupId>
  106. <artifactId>sckw-common-log</artifactId>
  107. <!-- <version>1.0.0</version>-->
  108. <version>${basic.version}</version>
  109. </dependency>
  110. </dependencies>
  111. <build>
  112. <plugins>
  113. <plugin>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-maven-plugin</artifactId>
  116. <executions>
  117. <execution>
  118. <goals>
  119. <goal>repackage</goal>
  120. </goals>
  121. </execution>
  122. </executions>
  123. <configuration>
  124. <excludes>
  125. <exclude>
  126. <groupId>org.projectlombok</groupId>
  127. <artifactId>lombok</artifactId>
  128. </exclude>
  129. </excludes>
  130. <mainClass>com.sckw.order.OrderApplication</mainClass>
  131. </configuration>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. </project>