pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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>${file.revision}</version>
  12. <artifactId>sckw-file</artifactId>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <basic.version>1.0.0</basic.version>
  17. </properties>
  18. <dependencies>
  19. <!-- 核心模块 -->
  20. <dependency>
  21. <groupId>com.sckw</groupId>
  22. <artifactId>sckw-common-startup</artifactId>
  23. <version>${basic.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.sckw</groupId>
  27. <artifactId>sckw-common-core</artifactId>
  28. <version>${basic.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.sckw</groupId>
  32. <artifactId>sckw-common-remote</artifactId>
  33. <version>${basic.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.sckw</groupId>
  37. <artifactId>sckw-common-datasource</artifactId>
  38. <version>${basic.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.sckw</groupId>
  42. <artifactId>sckw-common-redis</artifactId>
  43. <version>${basic.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.sckw</groupId>
  47. <artifactId>sckw-common-excel</artifactId>
  48. <version>${basic.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.sckw</groupId>
  52. <artifactId>sckw-system-api</artifactId>
  53. <version>${basic.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.sckw</groupId>
  57. <artifactId>sckw-file-api</artifactId>
  58. <version>${basic.version}</version>
  59. <!-- <version>1.0.0</version>-->
  60. </dependency>
  61. <!--alibaba oss-->
  62. <dependency>
  63. <groupId>com.sckw</groupId>
  64. <artifactId>sckw-common-seata</artifactId>
  65. <version>${basic.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.sckw</groupId>
  69. <artifactId>sckw-common-sentinel</artifactId>
  70. <version>${basic.version}</version>
  71. </dependency>
  72. <!--alibaba oss-->
  73. <dependency>
  74. <groupId>com.alibaba.cloud</groupId>
  75. <artifactId>spring-cloud-starter-alicloud-oss</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>javax.xml.bind</groupId>
  79. <artifactId>jaxb-api</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.alibaba</groupId>
  83. <artifactId>easyexcel</artifactId>
  84. <scope>compile</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.sckw</groupId>
  88. <artifactId>sckw-common-log</artifactId>
  89. <!-- <version>1.0.0</version>-->
  90. <version>${basic.version}</version>
  91. </dependency>
  92. </dependencies>
  93. <build>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-maven-plugin</artifactId>
  98. <executions>
  99. <execution>
  100. <goals>
  101. <goal>repackage</goal>
  102. </goals>
  103. </execution>
  104. </executions>
  105. <configuration>
  106. <mainClass>com.sckw.file.FileApplication</mainClass>
  107. </configuration>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </project>