Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove aws-sdk from ranger-extension #16011

Merged
13 changes: 12 additions & 1 deletion extensions-core/druid-ranger-security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,11 @@
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
</exclusion>
<!-- removing the complete bundle sdk to be replaced with only logs-sdk -->
<exclusion>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bundle</artifactId>
</exclusion>
xvrl marked this conversation as resolved.
Show resolved Hide resolved
<exclusion>
<groupId>org.elasticsearch</groupId>
<artifactId>*</artifactId>
Expand All @@ -193,7 +198,13 @@
</exclusions>
<scope>compile</scope>
</dependency>

<!-- This is a transitive dependency of ranger-plugins-audit
added here to replace bloated bundle sdk -->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-logs</artifactId>
<version>1.12.669</version>
xvrl marked this conversation as resolved.
Show resolved Hide resolved
xvrl marked this conversation as resolved.
Show resolved Hide resolved
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
Expand Down
16 changes: 13 additions & 3 deletions licenses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4650,13 +4650,23 @@ libraries:

---

name: com.amazonaws aws-java-sdk-bundle
name: com.amazonaws aws-java-sdk-logs
license_category: binary
version: 1.12.638
version: 1.12.669
module: druid-ranger-security
license_name: Apache License version 2.0
libraries:
- com.amazonaws: aws-java-sdk-bundle
- com.amazonaws: aws-java-sdk-logs

---

name: com.amazonaws jmespath-java
license_category: binary
version: 1.12.669
module: druid-ranger-security
license_name: Apache License version 2.0
libraries:
- com.amazonaws: jmespath-java

---

Expand Down
Loading