pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.studio.nx</groupId>
  7. <artifactId>nx-service-parent</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.studio.nx</groupId>
  11. <artifactId>nx-oss</artifactId>
  12. <packaging>jar</packaging>
  13. <name>nx-oss</name>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <properties>
  16. <qiniu-java-sdk.version>7.2.29</qiniu-java-sdk.version>
  17. <minio.version>8.2.1</minio.version>
  18. <aliyun-sdk-oss.version>3.8.0</aliyun-sdk-oss.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.studio.nx</groupId>
  23. <artifactId>nx-framework-dto</artifactId>
  24. <version>1.0.0-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.studio.nx</groupId>
  28. <artifactId>nx-framework-jwt</artifactId>
  29. <version>1.0.0-SNAPSHOT</version>
  30. <scope>compile</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.studio.nx</groupId>
  34. <artifactId>nx-framework-util</artifactId>
  35. <version>1.0.0-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-validation</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>javax.servlet</groupId>
  47. <artifactId>javax.servlet-api</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.springfox</groupId>
  51. <artifactId>springfox-boot-starter</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.projectlombok</groupId>
  55. <artifactId>lombok</artifactId>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>cn.hutool</groupId>
  60. <artifactId>hutool-all</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.qiniu</groupId>
  64. <artifactId>qiniu-java-sdk</artifactId>
  65. <version>${qiniu-java-sdk.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.minio</groupId>
  69. <artifactId>minio</artifactId>
  70. <version>${minio.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.aliyun.oss</groupId>
  74. <artifactId>aliyun-sdk-oss</artifactId>
  75. <version>${aliyun-sdk-oss.version}</version>
  76. </dependency>
  77. <!-- https://github.com/alibaba/aliyun-spring-boot/tree/master/aliyun-spring-boot-samples-->
  78. <!-- <dependency>-->
  79. <!-- <groupId>com.alibaba.cloud</groupId>-->
  80. <!-- <artifactId>spring-cloud-starter-alicloud-oss</artifactId>-->
  81. <!-- </dependency>-->
  82. <!-- https://mvnrepository.com/artifact/org.json/json -->
  83. <dependency>
  84. <groupId>org.json</groupId>
  85. <artifactId>json</artifactId>
  86. <version>20170516</version>
  87. </dependency>
  88. <!-- https://mvnrepository.com/artifact/com.gitee.qdbp.thirdparty/ueditor -->
  89. <dependency>
  90. <groupId>com.gitee.qdbp.thirdparty</groupId>
  91. <artifactId>ueditor</artifactId>
  92. <version>1.4.3.6</version>
  93. </dependency>
  94. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  95. <dependency>
  96. <groupId>commons-io</groupId>
  97. <artifactId>commons-io</artifactId>
  98. <version>2.6</version>
  99. </dependency>
  100. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  101. <dependency>
  102. <groupId>commons-lang</groupId>
  103. <artifactId>commons-lang</artifactId>
  104. <version>2.6</version>
  105. </dependency>
  106. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  107. <dependency>
  108. <groupId>commons-codec</groupId>
  109. <artifactId>commons-codec</artifactId>
  110. <version>1.14</version>
  111. </dependency>
  112. <!-- 2021-05-28 add by 梁展鹏 优秀的图片处理的Google开源 -->
  113. <dependency>
  114. <groupId>net.coobird</groupId>
  115. <artifactId>thumbnailator</artifactId>
  116. <version>0.4.14</version>
  117. </dependency>
  118. <!-- 2021-05-28 add by 梁展鹏 读取图片的元数据EXIF -->
  119. <dependency>
  120. <groupId>com.drewnoakes</groupId>
  121. <artifactId>metadata-extractor</artifactId>
  122. <version>2.16.0</version>
  123. </dependency>
  124. </dependencies>
  125. </project>