pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>3.3.0-SNAPSHOT</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>io.github.jianboy</groupId>
  12. <artifactId>minio-demo</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>minio-demo</name>
  15. <description>minio-demo</description>
  16. <properties>
  17. <java.version>21</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.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-maven-plugin</artifactId>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. <repositories>
  39. <repository>
  40. <id>spring-milestones</id>
  41. <name>Spring Milestones</name>
  42. <url>https://repo.spring.io/milestone</url>
  43. <snapshots>
  44. <enabled>false</enabled>
  45. </snapshots>
  46. </repository>
  47. <repository>
  48. <id>spring-snapshots</id>
  49. <name>Spring Snapshots</name>
  50. <url>https://repo.spring.io/snapshot</url>
  51. <releases>
  52. <enabled>false</enabled>
  53. </releases>
  54. </repository>
  55. </repositories>
  56. <pluginRepositories>
  57. <pluginRepository>
  58. <id>spring-milestones</id>
  59. <name>Spring Milestones</name>
  60. <url>https://repo.spring.io/milestone</url>
  61. <snapshots>
  62. <enabled>false</enabled>
  63. </snapshots>
  64. </pluginRepository>
  65. <pluginRepository>
  66. <id>spring-snapshots</id>
  67. <name>Spring Snapshots</name>
  68. <url>https://repo.spring.io/snapshot</url>
  69. <releases>
  70. <enabled>false</enabled>
  71. </releases>
  72. </pluginRepository>
  73. </pluginRepositories>
  74. </project>