spring-cloud-starter-stream-source-s3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>spring-cloud-starter-stream-source-s3</artifactId> <version>2.1.4.RELEASE</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>spring-cloud-starter-stream-source-s3</artifactId> <name>spring-cloud-starter-stream-source-s3</name> <description>Spring Cloud Stream Amazon S3 Source</description> <parent> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>aws-s3-app-starters-build</artifactId> <version>2.1.4.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>aws-s3-app-starters-common</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>app-starters-trigger-common</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>app-starters-trigger-unlimited-common</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>app-starters-file-common</artifactId> </dependency> <!-- Test Scope --> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>app-starters-test-support</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-app-starter-doc-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.springframework.cloud.stream.app.plugin</groupId> <artifactId>spring-cloud-stream-app-maven-plugin</artifactId> <configuration> <generatedProjectHome>${session.executionRootDirectory}/apps</generatedProjectHome> <generatedProjectVersion>${project.version}</generatedProjectVersion> <bom> <name>scs-bom</name> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>aws-s3-app-dependencies</artifactId> <version>${project.version}</version> </bom> <generatedApps> <s3-source> <autoConfigClass>org.springframework.cloud.stream.app.s3.source.AmazonS3SourceConfiguration.class</autoConfigClass> <testsIgnored>true</testsIgnored> </s3-source> </generatedApps> <enableContainerImageMetadata>true</enableContainerImageMetadata> </configuration> </plugin> </plugins> </build> </project>