Skip to content

Commit

Permalink
Prepraring for release 1.5.12
Browse files Browse the repository at this point in the history
Signed-off-by: Owen O'Malley <omalley@apache.org>
  • Loading branch information
omalley committed Sep 25, 2020
1 parent fc1682f commit 7d913a2
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -17,7 +17,7 @@ project(ORC)
# Version number of package
SET(CPACK_PACKAGE_VERSION_MAJOR "1")
SET(CPACK_PACKAGE_VERSION_MINOR "5")
SET(CPACK_PACKAGE_VERSION_PATCH "12-SNAPSHOT")
SET(CPACK_PACKAGE_VERSION_PATCH "12")
SET(ORC_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake_modules")

Expand Down
5 changes: 4 additions & 1 deletion java/CMakeLists.txt
Expand Up @@ -17,9 +17,12 @@ set(NO_DOWNLOAD_MSG
# set the version in the POM file to match the CMake version string
execute_process(COMMAND mvn versions:set -DnewVersion=${ORC_VERSION}
-DgenerateBackupPoms=false
-Pbenchmark
${NO_DOWNLOAD_MSG}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
execute_process(COMMAND mvn versions:set -DnewVersion=${ORC_VERSION}
-DgenerateBackupPoms=false
${NO_DOWNLOAD_MSG}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bench)

set(ORC_JARS
${CMAKE_CURRENT_BINARY_DIR}/shims/orc-shims-${ORC_VERSION}.jar
Expand Down
4 changes: 2 additions & 2 deletions java/bench/pom.xml
Expand Up @@ -25,7 +25,7 @@

<groupId>org.apache.orc</groupId>
<artifactId>orc-benchmarks</artifactId>
<version>1.5.11</version>
<version>1.5.12</version>
<packaging>jar</packaging>
<name>ORC Benchmarks</name>
<description>
Expand All @@ -40,7 +40,7 @@
<hadoop.version>2.7.3</hadoop.version>
<hive.version>2.3.3</hive.version>
<jmh.version>1.20</jmh.version>
<orc.version>1.5.9</orc.version>
<orc.version>${project.version}</orc.version>
<parquet.version>1.9.0</parquet.version>
<storage-api.version>2.5.0</storage-api.version>
<zookeeper.version>3.4.6</zookeeper.version>
Expand Down
2 changes: 1 addition & 1 deletion java/core/pom.xml
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.apache.orc</groupId>
<artifactId>orc</artifactId>
<version>1.5.12-SNAPSHOT</version>
<version>1.5.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/examples/pom.xml
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.apache.orc</groupId>
<artifactId>orc</artifactId>
<version>1.5.12-SNAPSHOT</version>
<version>1.5.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/mapreduce/pom.xml
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.apache.orc</groupId>
<artifactId>orc</artifactId>
<version>1.5.12-SNAPSHOT</version>
<version>1.5.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
10 changes: 5 additions & 5 deletions java/pom.xml
Expand Up @@ -21,7 +21,7 @@
</parent>
<groupId>org.apache.orc</groupId>
<artifactId>orc</artifactId>
<version>1.5.12-SNAPSHOT</version>
<version>1.5.12</version>
<packaging>pom</packaging>

<name>Apache ORC</name>
Expand Down Expand Up @@ -352,7 +352,7 @@
<dependency>
<groupId>org.apache.orc</groupId>
<artifactId>orc-shims</artifactId>
<version>1.5.12-SNAPSHOT</version>
<version>1.5.12</version>
<exclusions>
<exclusion>
<groupId>org.apache.hadoop</groupId>
Expand All @@ -367,17 +367,17 @@
<dependency>
<groupId>org.apache.orc</groupId>
<artifactId>orc-core</artifactId>
<version>1.5.12-SNAPSHOT</version>
<version>1.5.12</version>
</dependency>
<dependency>
<groupId>org.apache.orc</groupId>
<artifactId>orc-mapreduce</artifactId>
<version>1.5.12-SNAPSHOT</version>
<version>1.5.12</version>
</dependency>
<dependency>
<groupId>org.apache.orc</groupId>
<artifactId>orc-tools</artifactId>
<version>1.5.12-SNAPSHOT</version>
<version>1.5.12</version>
</dependency>

<!-- inter-project depedencies -->
Expand Down
2 changes: 1 addition & 1 deletion java/shims/pom.xml
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.apache.orc</groupId>
<artifactId>orc</artifactId>
<version>1.5.12-SNAPSHOT</version>
<version>1.5.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/tools/pom.xml
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.apache.orc</groupId>
<artifactId>orc</artifactId>
<version>1.5.12-SNAPSHOT</version>
<version>1.5.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit 7d913a2

Please sign in to comment.