Files
aivfo-framework/module/aivfo-dfs-client-spring-boot/pom.xml
T
2023-04-28 13:28:58 +08:00

43 lines
1.8 KiB
XML

<?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">
<parent>
<artifactId>aivfo-model-parent</artifactId>
<groupId>com.aivfo</groupId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../ability/aivfo-framework-build/aivfo-project-build/aivfo-model-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<version>1.0.0-SNAPSHOT</version>
<modules>
<module>aivfo-dfs-client-spring-boot-autoconfigure</module>
<module>aivfo-dfs-client-spring-boot-core</module>
<module>aivfo-dfs-client-spring-boot-starter</module>
<module>aivfo-fast-dfs-client</module>
</modules>
<properties>
<fastdfs-client-java.version>1.30-SNAPSHOT</fastdfs-client-java.version>
</properties>
<artifactId>aivfo-dfs-client-spring-boot</artifactId>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.aivfo</groupId>
<artifactId>aivfo-dfs-client-spring-boot-autoconfigure</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.aivfo</groupId>
<artifactId>aivfo-dfs-client-spring-boot-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.csource</groupId>
<artifactId>fastdfs-client-java</artifactId>
<version>${fastdfs-client-java.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>