Skip to content

Commit

Permalink
Upgrade hadoop
Browse files Browse the repository at this point in the history
  • Loading branch information
itsankit-google committed Feb 12, 2025
1 parent 757a972 commit 21ddb42
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.
4 changes: 2 additions & 2 deletions adls-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro-mapred</artifactId>
<version>1.7.7</version>
<version>1.11.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -58,7 +58,7 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-azure-datalake</artifactId>
<version>2.9.2</version>
<version>${hadoop.version}</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion azure-blob-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-azure</artifactId>
<version>2.8.0</version>
<version>${hadoop.version}</version>
</dependency>
</dependencies>

Expand Down
25 changes: 19 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,24 +79,37 @@

<repositories>
<repository>
<id>sonatype.release</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<cdap.version>6.9.0</cdap.version>
<hadoop.version>2.10.2</hadoop.version>
<cdap.plugin.version>2.6.0</cdap.plugin.version>
<cdap.version>6.11.0-SNAPSHOT</cdap.version>
<hadoop.version>3.3.6</hadoop.version>
<cdap.plugin.version>2.13.0-SNAPSHOT</cdap.plugin.version>
<widgets.dir>widgets</widgets.dir>
<docs.dir>docs</docs.dir>
<!-- properties for script build step that creates the config files for the artifacts -->
<app.parents>system:cdap-data-pipeline[6.1.0-SNAPSHOT,7.0.0-SNAPSHOT),system:cdap-data-streams[6.1.0-SNAPSHOT,7.0.0-SNAPSHOT)
<app.parents>
system:cdap-data-pipeline[6.11.0-SNAPSHOT,7.0.0-SNAPSHOT),system:cdap-data-streams[6.11.0-SNAPSHOT,7.0.0-SNAPSHOT)
</app.parents>
<main.basedir>${project.basedir}</main.basedir>
</properties>
Expand Down

0 comments on commit 21ddb42

Please sign in to comment.