pom.xml 4.6 KB

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