spring-cloud-aws-s3-cross-region-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.awspring.cloud</groupId> <artifactId>spring-cloud-aws-s3-cross-region-client</artifactId> <version>3.1.1</version> </dependency>
<?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> <parent> <groupId>io.awspring.cloud</groupId> <artifactId>spring-cloud-aws-s3-parent</artifactId> <version>3.1.1</version> </parent> <artifactId>spring-cloud-aws-s3-cross-region-client</artifactId> <name>Spring Cloud AWS S3 Cross Region Client</name> <dependencies> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>s3</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>localstack</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.0.0</version> <dependencies> <dependency> <groupId>io.awspring.cloud</groupId> <artifactId>spring-cloud-aws-s3-codegen</artifactId> <version>${project.version}</version> </dependency> </dependencies> <executions> <execution> <id>generate-javaparser-core</id> <phase>generate-sources</phase> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <includeProjectDependencies>true</includeProjectDependencies> <includePluginDependencies>true</includePluginDependencies> <mainClass>io.awspring.cloud.s3.codegen.AbstractCrossRegionS3ClientGenerator</mainClass> <arguments> <argument>${project.build.sourceDirectory}</argument> </arguments> </configuration> </plugin> </plugins> </build> </project>