Skip to content

Commit

Permalink
Merge pull request #295 from cdapio/CDAP-21027_hadoop_upgrade
Browse files Browse the repository at this point in the history
CDAP-21027 : Upgrading hadoop version to 3.3.6
  • Loading branch information
sahusanket authored Jul 26, 2024
2 parents ef3fbd9 + fae696b commit 6b1808d
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 9 deletions.
2 changes: 1 addition & 1 deletion cdap-ldap-role/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<properties>
<security.authorizer.class>io.cdap.cdap.security.authorization.ldap.role.LDAPRoleAccessController</security.authorizer.class>
<jackson.version>2.8.8</jackson.version>
<jackson.version>2.12.7</jackson.version>
<maven.build.timestamp.format>HH:mm:ss dd-MM-yyyy</maven.build.timestamp.format>
</properties>

Expand Down
7 changes: 3 additions & 4 deletions cdap-ranger/cdap-ranger-binding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,8 @@
<version>2.6</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
<version>1.8.8</version>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
Expand Down Expand Up @@ -102,7 +101,7 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.3.0</version>
<version>3.5.0</version>
<extensions>true</extensions>
<configuration>
<archive>
Expand Down
15 changes: 14 additions & 1 deletion cdap-ranger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@


<properties>
<hadoop.version>2.3.0</hadoop.version>
<hadoop.version>3.3.6</hadoop.version>
<ranger.version>0.7.0</ranger.version>
</properties>

Expand Down Expand Up @@ -108,8 +108,21 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-jaxrs</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>org.apache.ranger</groupId>
<artifactId>ranger-plugins-audit</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions cdap-sentry/cdap-sentry-extension/cdap-sentry-binding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@
<groupId>org.apache.sentry</groupId>
<artifactId>sentry-provider-db</artifactId>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
25 changes: 24 additions & 1 deletion cdap-sentry/cdap-sentry-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<url>http://github.com/cdapio/cdap-security-extn/cdap-sentry</url>

<properties>
<hadoop.version>2.3.0</hadoop.version>
<hadoop.version>3.3.6</hadoop.version>
<sentry.version>1.7.0</sentry.version>
</properties>

Expand Down Expand Up @@ -117,6 +117,29 @@
<groupId>org.apache.sentry</groupId>
<artifactId>sentry-core-model-sqoop</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
</exclusion>
<exclusion>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${hadoop.version}</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
</exclusion>
<exclusion>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<modules>
<module>cdap-ranger</module>
<module>cdap-sentry</module>
<!-- TODO <module>cdap-sentry</module> TO EVALUATE https://cdap.atlassian.net/browse/CDAP-21050 -->
<module>cdap-security-extensions-dist</module>
<module>cdap-ldap-role</module>
</modules>
Expand Down Expand Up @@ -66,7 +66,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<cdap.version>6.9.1</cdap.version>
<cdap.version>6.11.0-SNAPSHOT</cdap.version>
<commons.collections.version>3.2.2</commons.collections.version>
<slf4j.version>1.7.15</slf4j.version>
<junit.version>4.11</junit.version>
Expand Down

0 comments on commit 6b1808d

Please sign in to comment.