Skip to content

Commit

Permalink
ODP-1623: HIVE-26134 | repositiry adding
Browse files Browse the repository at this point in the history
  • Loading branch information
basapuram-kumar committed Jun 17, 2024
1 parent 3c00ed1 commit 221605b
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 2 deletions.
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,18 @@
<module>standalone-metastore</module>
<module>kafka-handler</module>
</modules>
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>Releases</name>
<url>https://repo1.acceldata.dev/repository/odp-release/</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<name>Snapshot</name>
<url>https://repo1.acceldata.dev/repository/odp-snapshot/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<standalone-metastore.version>4.0.0</standalone-metastore.version>
<hive.version.shortname>4.0.0</hive.version.shortname>
Expand Down
2 changes: 0 additions & 2 deletions ql/src/java/org/apache/hadoop/hive/ql/hooks/AdHiveHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,6 @@ private ExecutionMode getExecutionMode(QueryPlan plan, List<ExecDriver> mrTasks,
return ExecutionMode.TEZ;
} else if (mrTasks.size() > 0) {
return ExecutionMode.MR;
} else if (Utilities.getSparkTasks(plan.getRootTasks()).size() > 0) {
return ExecutionMode.SPARK;
} else {
return ExecutionMode.NONE;
}
Expand Down
13 changes: 13 additions & 0 deletions service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -471,4 +471,17 @@
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

</project>
12 changes: 12 additions & 0 deletions storage-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@
<maven.versions.plugin.version>2.16.0</maven.versions.plugin.version>
<maven.surefire.plugin.version>3.0.0-M4</maven.surefire.plugin.version>
</properties>
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>Releases</name>
<url>https://repo1.acceldata.dev/repository/odp-release/</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<name>Snapshot</name>
<url>https://repo1.acceldata.dev/repository/odp-snapshot/</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<!-- compile inter-project -->
<dependency>
Expand Down

0 comments on commit 221605b

Please sign in to comment.