Skip to content

Commit cc2827e

Browse files
authored
Merge pull request aws#4675 from aws/dongie/add-lf-plugin
Add LakeFormation plugin in bundle
2 parents ae2ab71 + 820b24e commit cc2827e

3 files changed

Lines changed: 118 additions & 0 deletions

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS SDK for Java v2 Bundle",
4+
"contributor": "",
5+
"description": "Include `aws-lakeformation-accessgrants-java-plugin` in the bundle."
6+
}

bundle-sdk/pom.xml

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,114 @@
5656
<version>${awsjavasdk.version}</version>
5757
<optional>true</optional>
5858
</dependency>
59+
<dependency>
60+
<groupId>software.amazon.lakeformation.plugin.accessgrants</groupId>
61+
<artifactId>aws-lakeformation-accessgrants-java-plugin</artifactId>
62+
<version>${lakeformations3accessgrants.version}</version>
63+
<optional>true</optional>
64+
<exclusions>
65+
<exclusion>
66+
<groupId>software.amazon.awssdk</groupId>
67+
<artifactId>auth</artifactId>
68+
</exclusion>
69+
<exclusion>
70+
<groupId>software.amazon.awssdk</groupId>
71+
<artifactId>http-auth-spi</artifactId>
72+
</exclusion>
73+
<exclusion>
74+
<groupId>software.amazon.awssdk</groupId>
75+
<artifactId>identity-spi</artifactId>
76+
</exclusion>
77+
<exclusion>
78+
<groupId>software.amazon.awssdk</groupId>
79+
<artifactId>s3control</artifactId>
80+
</exclusion>
81+
<exclusion>
82+
<groupId>software.amazon.awssdk</groupId>
83+
<artifactId>s3</artifactId>
84+
</exclusion>
85+
<exclusion>
86+
<groupId>software.amazon.awssdk</groupId>
87+
<artifactId>iam</artifactId>
88+
</exclusion>
89+
<exclusion>
90+
<groupId>software.amazon.awssdk</groupId>
91+
<artifactId>sts</artifactId>
92+
</exclusion>
93+
<exclusion>
94+
<groupId>software.amazon.awssdk</groupId>
95+
<artifactId>cloudwatch-metric-publisher</artifactId>
96+
</exclusion>
97+
<exclusion>
98+
<groupId>software.amazon.eventstream</groupId>
99+
<artifactId>eventstream</artifactId>
100+
</exclusion>
101+
<exclusion>
102+
<groupId>org.slf4j</groupId>
103+
<artifactId>slf4j-api</artifactId>
104+
</exclusion>
105+
<exclusion>
106+
<groupId>io.netty</groupId>
107+
<artifactId>netty-codec-http</artifactId>
108+
</exclusion>
109+
<exclusion>
110+
<groupId>io.netty</groupId>
111+
<artifactId>netty-codec-http2</artifactId>
112+
</exclusion>
113+
<exclusion>
114+
<groupId>io.netty</groupId>
115+
<artifactId>netty-codec</artifactId>
116+
</exclusion>
117+
<exclusion>
118+
<groupId>io.netty</groupId>
119+
<artifactId>netty-transport</artifactId>
120+
</exclusion>
121+
<exclusion>
122+
<groupId>io.netty</groupId>
123+
<artifactId>netty-common</artifactId>
124+
</exclusion>
125+
<exclusion>
126+
<groupId>io.netty</groupId>
127+
<artifactId>netty-buffer</artifactId>
128+
</exclusion>
129+
<exclusion>
130+
<groupId>io.netty</groupId>
131+
<artifactId>netty-handler</artifactId>
132+
</exclusion>
133+
<exclusion>
134+
<groupId>io.netty</groupId>
135+
<artifactId>netty-transport-classes-epoll</artifactId>
136+
</exclusion>
137+
<exclusion>
138+
<groupId>io.netty</groupId>
139+
<artifactId>netty-resolver</artifactId>
140+
</exclusion>
141+
<exclusion>
142+
<groupId>io.netty</groupId>
143+
<artifactId>netty-resolver-dns</artifactId>
144+
</exclusion>
145+
<exclusion>
146+
<groupId>org.apache.httpcomponents</groupId>
147+
<artifactId>httpcomponents-client</artifactId>
148+
</exclusion>
149+
<exclusion>
150+
<groupId>org.apache.httpcomponents</groupId>
151+
<artifactId>httpcore</artifactId>
152+
</exclusion>
153+
<exclusion>
154+
<groupId>org.apache.httpcomponents</groupId>
155+
<artifactId>httpclient</artifactId>
156+
</exclusion>
157+
<exclusion>
158+
<groupId>commons-codec</groupId>
159+
<artifactId>commons-codec</artifactId>
160+
</exclusion>
161+
<exclusion>
162+
<groupId>org.reactivestreams</groupId>
163+
<artifactId>reactive-streams</artifactId>
164+
</exclusion>
165+
</exclusions>
166+
</dependency>
59167
<dependency>
60168
<groupId>software.amazon.s3.accessgrants</groupId>
61169
<artifactId>aws-s3-accessgrants-java-plugin</artifactId>
@@ -181,6 +289,7 @@
181289
<include>software.amazon.awssdk:*</include>
182290
<include>software.amazon:*</include>
183291
<include>software.amazon.s3.accessgrants:*</include>
292+
<include>software.amazon.lakeformation.plugin.accessgrants:*</include>
184293
<include>com.github.ben-manes.caffeine:caffeine</include>
185294
<include>com.google.errorprone:error_prone_annotations</include>
186295
<inlcude>org.checkerframework:checker-qual</inlcude>

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,8 @@
195195
<!-- S3 Access Grants plugin version -->
196196
<s3accessgrants.version>2.1.0</s3accessgrants.version>
197197

198+
<lakeformations3accessgrants.version>1.1</lakeformations3accessgrants.version>
199+
198200
<skip.unit.tests>${skipTests}</skip.unit.tests>
199201
<v2.migration.tests.skip>true</v2.migration.tests.skip>
200202
<integTestSourceDirectory>${project.basedir}/src/it/java</integTestSourceDirectory>
@@ -546,6 +548,7 @@
546548
<ignoredUnusedDeclaredDependency>software.amazon.awssdk:http-auth</ignoredUnusedDeclaredDependency>
547549
<!-- Ignoring any unused declared dependency warnings for access grants plugin across the bundle -->
548550
<ignoredUnusedDeclaredDependency>software.amazon.s3.accessgrants:*</ignoredUnusedDeclaredDependency>
551+
<ignoredUnusedDeclaredDependency>software.amazon.lakeformation.plugin.accessgrants:*</ignoredUnusedDeclaredDependency>
549552
</ignoredUnusedDeclaredDependencies>
550553
</configuration>
551554
</plugin>

0 commit comments

Comments
 (0)