pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. <artifactId>sckw-modules</artifactId>
  8. <groupId>com.sckw</groupId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <!-- <groupId>com.sckw</groupId>-->
  12. <artifactId>sckw-file</artifactId>
  13. <version>1.0.0</version>
  14. <description>文件服务</description>
  15. <properties>
  16. <maven.compiler.source>17</maven.compiler.source>
  17. <maven.compiler.target>17</maven.compiler.target>
  18. <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.sckw</groupId>
  24. <artifactId>sckw-common-remote</artifactId>
  25. <version>1.0.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.sckw</groupId>
  29. <artifactId>sckw-common-core</artifactId>
  30. <version>1.0.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.sckw</groupId>
  34. <artifactId>sckw-common-datasource</artifactId>
  35. <version>1.0.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.sckw</groupId>
  39. <artifactId>sckw-common-redis</artifactId>
  40. <version>1.0.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.sckw</groupId>
  44. <artifactId>sckw-common-excel</artifactId>
  45. <version>1.0.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.sckw</groupId>
  49. <artifactId>sckw-system-api</artifactId>
  50. <version>1.0.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.sckw</groupId>
  54. <artifactId>sckw-file-api</artifactId>
  55. <version>1.0.0</version>
  56. </dependency>
  57. <!--alibaba oss-->
  58. <dependency>
  59. <groupId>com.alibaba.cloud</groupId>
  60. <artifactId>spring-cloud-starter-alicloud-oss</artifactId>
  61. <version>2.2.0.RELEASE</version>
  62. </dependency>
  63. <!-- <dependency>-->
  64. <!-- <groupId>com.aliyun.oss</groupId>-->
  65. <!-- <artifactId>aliyun-sdk-oss</artifactId>-->
  66. <!-- <version>3.8.0</version>-->
  67. <!-- <scope>compile</scope>-->
  68. <!-- </dependency>-->
  69. <!--jdk9+ 以上需要手动添加-->
  70. <dependency>
  71. <groupId>javax.xml.bind</groupId>
  72. <artifactId>jaxb-api</artifactId>
  73. <version>2.3.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-web</artifactId>
  78. </dependency>
  79. <!--注册中心客户端-->
  80. <dependency>
  81. <groupId>com.alibaba.cloud</groupId>
  82. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  83. </dependency>
  84. <!--配置中心客户端-->
  85. <dependency>
  86. <groupId>com.alibaba.cloud</groupId>
  87. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.cloud</groupId>
  91. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.alibaba</groupId>
  95. <artifactId>easyexcel</artifactId>
  96. <version>3.0.5</version>
  97. <scope>compile</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.sckw</groupId>
  101. <artifactId>sckw-common-excel</artifactId>
  102. <version>1.0.0</version>
  103. <scope>compile</scope>
  104. </dependency>
  105. </dependencies>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-maven-plugin</artifactId>
  111. <executions>
  112. <execution>
  113. <goals>
  114. <goal>repackage</goal>
  115. </goals>
  116. </execution>
  117. </executions>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>