pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. <!--alibaba oss-->
  53. <dependency>
  54. <groupId>com.alibaba.cloud</groupId>
  55. <artifactId>spring-cloud-starter-alicloud-oss</artifactId>
  56. <version>2.2.0.RELEASE</version>
  57. </dependency>
  58. <!-- <dependency>-->
  59. <!-- <groupId>com.aliyun.oss</groupId>-->
  60. <!-- <artifactId>aliyun-sdk-oss</artifactId>-->
  61. <!-- <version>3.8.0</version>-->
  62. <!-- <scope>compile</scope>-->
  63. <!-- </dependency>-->
  64. <!--jdk9+ 以上需要手动添加-->
  65. <dependency>
  66. <groupId>javax.xml.bind</groupId>
  67. <artifactId>jaxb-api</artifactId>
  68. <version>2.3.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-web</artifactId>
  73. </dependency>
  74. <!--注册中心客户端-->
  75. <dependency>
  76. <groupId>com.alibaba.cloud</groupId>
  77. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  78. </dependency>
  79. <!--配置中心客户端-->
  80. <dependency>
  81. <groupId>com.alibaba.cloud</groupId>
  82. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.cloud</groupId>
  86. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.alibaba</groupId>
  90. <artifactId>easyexcel</artifactId>
  91. <version>3.0.5</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.sckw</groupId>
  96. <artifactId>sckw-common-excel</artifactId>
  97. <version>1.0.0</version>
  98. <scope>compile</scope>
  99. </dependency>
  100. </dependencies>
  101. </project>