pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.7</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com</groupId>
  12. <artifactId>yaj-upload</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>yaj-upload</name>
  15. <description>yaj-upload</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.projectlombok</groupId>
  26. <artifactId>lombok</artifactId>
  27. <optional>true</optional>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.swagger</groupId>
  31. <artifactId>swagger-annotations</artifactId>
  32. <version>1.6.2</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. <!-- io常用工具类 -->
  36. <dependency>
  37. <groupId>commons-io</groupId>
  38. <artifactId>commons-io</artifactId>
  39. <version>2.11.0</version>
  40. </dependency>
  41. <!--Token生成与解析-->
  42. <dependency>
  43. <groupId>io.jsonwebtoken</groupId>
  44. <artifactId>jjwt</artifactId>
  45. <version>0.9.1</version>
  46. </dependency>
  47. <!--常用工具类 -->
  48. <dependency>
  49. <groupId>org.apache.commons</groupId>
  50. <artifactId>commons-lang3</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.aliyun.oss</groupId>
  54. <artifactId>aliyun-sdk-oss</artifactId>
  55. <version>3.10.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-test</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.aliyun</groupId>
  64. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  65. <version>1.1.0</version>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. <configuration>
  74. <excludes>
  75. <exclude>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. </exclude>
  79. </excludes>
  80. </configuration>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. <repositories>
  85. <repository>
  86. <id>public</id>
  87. <name>aliyun nexus</name>
  88. <url>https://maven.aliyun.com/repository/public</url>
  89. <releases>
  90. <enabled>true</enabled>
  91. </releases>
  92. </repository>
  93. </repositories>
  94. <pluginRepositories>
  95. <pluginRepository>
  96. <id>public</id>
  97. <name>aliyun nexus</name>
  98. <url>https://maven.aliyun.com/repository/public</url>
  99. <releases>
  100. <enabled>true</enabled>
  101. </releases>
  102. <snapshots>
  103. <enabled>false</enabled>
  104. </snapshots>
  105. </pluginRepository>
  106. </pluginRepositories>
  107. </project>