2023-03-08 10:51:46 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<artifactId>minioss-springboot-starter</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>nexus-releases</id>
|
|
|
|
|
<name>Nexus Release Repository</name>
|
2024-05-13 13:23:10 +08:00
|
|
|
<url>http://192.168.1.22:8001/nexus/content/repositories/releases/</url>
|
2023-03-08 10:51:46 +08:00
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>nexus-snapshots</id>
|
|
|
|
|
<name>Nexus Snapshot Repository</name>
|
2024-05-13 13:23:10 +08:00
|
|
|
<url>http://192.168.1.22:8001/nexus/content/repositories/snapshots/</url>
|
2023-03-08 10:51:46 +08:00
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<progressbar.version>0.5.3</progressbar.version>
|
|
|
|
|
<okhttp.version>4.8.1</okhttp.version>
|
|
|
|
|
<minio.version>8.2.1</minio.version>
|
|
|
|
|
</properties>
|
|
|
|
|
<description>灿能minioss组件提取的starter模块</description>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<artifactId>common-core</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>me.tongfei</groupId>
|
|
|
|
|
<artifactId>progressbar</artifactId>
|
|
|
|
|
<version>${progressbar.version}</version>
|
2023-03-22 19:11:50 +08:00
|
|
|
<scope>compile</scope>
|
2023-03-08 10:51:46 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
<version>${okhttp.version}</version>
|
2023-03-22 19:11:50 +08:00
|
|
|
<scope>compile</scope>
|
2023-03-08 10:51:46 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
|
<version>${minio.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2023-03-22 19:11:50 +08:00
|
|
|
<scope>compile</scope>
|
2023-03-08 10:51:46 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
<version>2.3.12.RELEASE</version>
|
2023-03-22 19:11:50 +08:00
|
|
|
<scope>compile</scope>
|
2023-03-08 10:51:46 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|