pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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>${manage.revision}</version>
  12. <artifactId>sckw-manage</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-remote</artifactId>
  34. <version>${basic.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.sckw</groupId>
  38. <artifactId>sckw-common-datasource</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-stream</artifactId>
  49. <version>${basic.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.sckw</groupId>
  53. <artifactId>sckw-common-seata</artifactId>
  54. <version>${basic.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.sckw</groupId>
  58. <artifactId>sckw-system-api</artifactId>
  59. <version>${basic.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.sckw</groupId>
  63. <artifactId>sckw-common-excel</artifactId>
  64. <version>${basic.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.sckw</groupId>
  68. <artifactId>sckw-manage-api</artifactId>
  69. <!-- <version>1.0.0</version>-->
  70. <version>${basic.version}</version>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.sckw</groupId>
  75. <artifactId>sckw-order-api</artifactId>
  76. <version>${basic.version}</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.sckw</groupId>
  81. <artifactId>sckw-transport-api</artifactId>
  82. <version>${basic.version}</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.sckw</groupId>
  87. <artifactId>sckw-payment-api</artifactId>
  88. <version>${basic.version}</version>
  89. <scope>compile</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.sckw</groupId>
  93. <artifactId>sckw-common-log</artifactId>
  94. <!-- <version>1.0.0</version>-->
  95. <version>${basic.version}</version>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-maven-plugin</artifactId>
  103. <executions>
  104. <execution>
  105. <goals>
  106. <goal>repackage</goal>
  107. </goals>
  108. </execution>
  109. </executions>
  110. <configuration>
  111. <excludes>
  112. <exclude>
  113. <groupId>org.projectlombok</groupId>
  114. <artifactId>lombok</artifactId>
  115. </exclude>
  116. </excludes>
  117. <mainClass>com.sckw.manage.ManageApplication</mainClass>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. </project>