You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2021/08/09 08:09:41 UTC

[orc] branch main updated: ORC-923: Bump apache from 23 to 24 (#836)

This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/main by this push:
     new afc0217  ORC-923: Bump apache from 23 to 24 (#836)
afc0217 is described below

commit afc021744cd52c07cb6e0da7c89606fd98742f13
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Mon Aug 9 01:09:35 2021 -0700

    ORC-923: Bump apache from 23 to 24 (#836)
    
    ### What changes were proposed in this pull request?
    
    This PR aims to bump Apache parent pom to 24 and add `project.build.outputTimestamp` property to comply with the new enforcement. However, Apache ORC project is using `reproducible-build-maven-plugin` already since ORC-504.
    
    ### Why are the changes needed?
    
    To use the latest Apache pom file.
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    Closes #834.
---
 java/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/java/pom.xml b/java/pom.xml
index d207b7e..74d5c7f 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -17,7 +17,7 @@
   <parent>
     <groupId>org.apache</groupId>
     <artifactId>apache</artifactId>
-    <version>23</version>
+    <version>24</version>
   </parent>
   <groupId>org.apache.orc</groupId>
   <artifactId>orc</artifactId>
@@ -63,6 +63,7 @@
 
   <properties>
     <!-- Build Properties -->
+    <project.build.outputTimestamp>2021-08-08T00:00:00Z</project.build.outputTimestamp>
     <maven.compiler.source>1.8</maven.compiler.source>
     <maven.compiler.target>1.8</maven.compiler.target>
     <maven.compiler.useIncrementalCompilation>false</maven.compiler.useIncrementalCompilation>