pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <artifactId>sckw-contract</artifactId>
  12. <description>合同服务</description>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <!-- 核心模块 -->
  19. <dependency>
  20. <groupId>com.sckw</groupId>
  21. <artifactId>sckw-common-startup</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.sckw</groupId>
  25. <artifactId>sckw-common-core</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.sckw</groupId>
  29. <artifactId>sckw-common-datasource</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.sckw</groupId>
  33. <artifactId>sckw-common-remote</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.sckw</groupId>
  37. <artifactId>sckw-common-redis</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.sckw</groupId>
  41. <artifactId>sckw-common-seata</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.sckw</groupId>
  45. <artifactId>sckw-system-api</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.sckw</groupId>
  49. <artifactId>sckw-common-excel</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.sckw</groupId>
  53. <artifactId>sckw-product-api</artifactId>
  54. <version>1.0.0</version>
  55. <scope>compile</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.sckw</groupId>
  59. <artifactId>sckw-contract-api</artifactId>
  60. <version>1.0.0</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. <executions>
  70. <execution>
  71. <goals>
  72. <goal>repackage</goal>
  73. </goals>
  74. </execution>
  75. </executions>
  76. <configuration>
  77. <excludes>
  78. <exclude>
  79. <groupId>org.projectlombok</groupId>
  80. <artifactId>lombok</artifactId>
  81. </exclude>
  82. </excludes>
  83. <mainClass>com.sckw.contract.ContractApplication</mainClass>
  84. </configuration>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. </project>