pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>imcs-admin-boot</artifactId>
  7. <groupId>com.github.zuihou</groupId>
  8. <version>b.2.5-SNAPSHOT</version>
  9. <relativePath>../</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>imcs-file-biz</artifactId>
  13. <description>文件服务业务模块</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.github.zuihou</groupId>
  17. <artifactId>imcs-file-entity</artifactId>
  18. <version>${imcs-project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.github.zuihou</groupId>
  22. <artifactId>zuihou-boot</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.github.zuihou</groupId>
  26. <artifactId>zuihou-databases</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.github.zuihou</groupId>
  30. <artifactId>zuihou-dozer-starter</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <!-- @RefreshScope 需要使用 -->
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-context</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.baomidou</groupId>
  43. <artifactId>mybatis-plus</artifactId>
  44. </dependency>
  45. <!-- 阿里云oss -->
  46. <dependency>
  47. <groupId>com.aliyun.oss</groupId>
  48. <artifactId>aliyun-sdk-oss</artifactId>
  49. </dependency>
  50. <!-- 七牛oss -->
  51. <dependency>
  52. <groupId>com.qiniu</groupId>
  53. <artifactId>qiniu-java-sdk</artifactId>
  54. </dependency>
  55. <!-- FastDFS -->
  56. <dependency>
  57. <groupId>com.github.tobato</groupId>
  58. <artifactId>fastdfs-client</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-configuration-processor</artifactId>
  63. <optional>true</optional>
  64. <scope>compile</scope>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <resources>
  69. <resource>
  70. <directory>src/main/resources</directory>
  71. </resource>
  72. </resources>
  73. </build>
  74. </project>