chore(pom.xml): 新增MinIO依赖
This commit is contained in:
38
pom.xml
38
pom.xml
@@ -6,14 +6,15 @@
|
||||
|
||||
<groupId>com.youlai</groupId>
|
||||
<artifactId>youlai-boot</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<name>SpringBoot 单体应用</name>
|
||||
<version>1.1.1</version>
|
||||
<name>SpringBoot单体应用</name>
|
||||
<description>基于SpringBoot快速构建的后台权限管理系统</description>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.7.3</version>
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
<version>2.7.5</version>
|
||||
<relativePath/>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
@@ -38,6 +39,9 @@
|
||||
<jjwt.version>0.11.5</jjwt.version>
|
||||
|
||||
<easyexcel.version>3.0.5</easyexcel.version>
|
||||
|
||||
<minio.version>8.3.7</minio.version>
|
||||
<okhttp3.version>4.8.1</okhttp3.version>
|
||||
</properties>
|
||||
|
||||
|
||||
@@ -147,6 +151,13 @@
|
||||
<artifactId>spring-boot-starter-validation</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- 分布式文件存储 -->
|
||||
<dependency>
|
||||
<groupId>io.minio</groupId>
|
||||
<artifactId>minio</artifactId>
|
||||
<version>${minio.version}</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
@@ -155,17 +166,14 @@
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
<version>${spring.boot.version}</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.10.1</version>
|
||||
<configuration>
|
||||
<source>17</source>
|
||||
<target>17</target>
|
||||
</configuration>
|
||||
<version>${parent.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>repackage</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
Reference in New Issue
Block a user