pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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-system-api</artifactId>
  45. <version>1.0.0</version>
  46. </dependency>
  47. <!--alibaba oss-->
  48. <dependency>
  49. <groupId>com.alibaba.cloud</groupId>
  50. <artifactId>spring-cloud-starter-alicloud-oss</artifactId>
  51. <version>2.2.0.RELEASE</version>
  52. </dependency>
  53. <!-- <dependency>-->
  54. <!-- <groupId>com.aliyun.oss</groupId>-->
  55. <!-- <artifactId>aliyun-sdk-oss</artifactId>-->
  56. <!-- <version>3.8.0</version>-->
  57. <!-- <scope>compile</scope>-->
  58. <!-- </dependency>-->
  59. <!--jdk9+ 以上需要手动添加-->
  60. <dependency>
  61. <groupId>javax.xml.bind</groupId>
  62. <artifactId>jaxb-api</artifactId>
  63. <version>2.3.1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-web</artifactId>
  68. </dependency>
  69. <!--注册中心客户端-->
  70. <dependency>
  71. <groupId>com.alibaba.cloud</groupId>
  72. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  73. </dependency>
  74. <!--配置中心客户端-->
  75. <dependency>
  76. <groupId>com.alibaba.cloud</groupId>
  77. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.cloud</groupId>
  81. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  82. </dependency>
  83. </dependencies>
  84. </project>