Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions bundle-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@
<version>${awsjavasdk.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>software.amazon.s3.accessgrants</groupId>
<artifactId>aws-s3-accessgrants-java-plugin</artifactId>
<version>${s3accessgrants.version}</version>
</dependency>
</dependencies>

<build>
Expand All @@ -76,6 +81,8 @@
<include>commons-codec:commons-codec</include>
<include>software.amazon.awssdk:*</include>
<include>software.amazon:*</include>
<include>software.amazon.s3.accessgrants:*</include>
<inlcude>com.github.ben-manes.caffeine:*</inlcude>
<include>commons-logging:*</include>
</includes>
</artifactSet>
Expand Down Expand Up @@ -113,6 +120,7 @@
</plugin>
</plugins>
</pluginManagement>

</build>

<profiles>
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@
<!-- Reactive Streams version -->
<reactive-streams.version>1.0.4</reactive-streams.version>

<!-- S3 Access Grants plugin version -->
<s3accessgrants.version>2.0.1</s3accessgrants.version>

<skip.unit.tests>${skipTests}</skip.unit.tests>
<integTestSourceDirectory>${project.basedir}/src/it/java</integTestSourceDirectory>
<javadoc.resourcesDir>${session.executionRootDirectory}</javadoc.resourcesDir>
Expand Down Expand Up @@ -534,6 +537,9 @@
old interfaces, but that should become a test scoped dependency in modules where needed.
And the line below removed. -->
<ignoredUnusedDeclaredDependency>software.amazon.awssdk:auth</ignoredUnusedDeclaredDependency>

<!-- Ignoring any unused declared dependency warnings for access grants plugin across the bundle -->
<ignoredUnusedDeclaredDependency>software.amazon.s3.accessgrants:*</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
</configuration>
</plugin>
Expand Down