pom.xml 3.4 KB

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