|
@@ -0,0 +1,42 @@
|
|
|
|
+<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
+ <parent>
|
|
|
|
+ <artifactId>4dkankan-utils</artifactId>
|
|
|
|
+ <groupId>com.fdkankan</groupId>
|
|
|
|
+ <version>3.0.0-SNAPSHOT</version>
|
|
|
|
+ </parent>
|
|
|
|
+ <artifactId>4dkankan-utils-fyun-s3</artifactId>
|
|
|
|
+ <properties>
|
|
|
|
+ <java.version>1.8</java.version>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.fdkankan</groupId>
|
|
|
|
+ <artifactId>4dkankan-utils-fyun-parent</artifactId>
|
|
|
|
+ <version>3.0.0-SNAPSHOT</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.amazonaws</groupId>
|
|
|
|
+ <artifactId>aws-java-sdk-s3</artifactId>
|
|
|
|
+ <version>1.11.1032</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.amazonaws</groupId>
|
|
|
|
+ <artifactId>aws-java-sdk-core</artifactId>
|
|
|
|
+ <version>1.11.1032</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+
|
|
|
|
+</project>
|