You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mnemonic.apache.org by yz...@apache.org on 2021/06/20 02:45:32 UTC

[mnemonic] branch master updated: MNEMONIC-657: Mnemonic release script should be updated to remove compiled code files in prepared release candidates

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

yzhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mnemonic.git


The following commit(s) were added to refs/heads/master by this push:
     new 2db1121  MNEMONIC-657: Mnemonic release script should be updated to remove compiled code files in prepared release candidates
2db1121 is described below

commit 2db1121f2967c9a346fb6a652740b7330f114f5d
Author: Xiaojin Jiao <xj...@apache.org>
AuthorDate: Thu Jun 17 17:24:42 2021 -0700

    MNEMONIC-657: Mnemonic release script should be updated to remove compiled code files in prepared release candidates
    
    Signed-off-by: Xiaojin Jiao <xj...@apache.org>
---
 build.gradle              | 6 +++---
 tools/source-assembly.xml | 3 ---
 2 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/build.gradle b/build.gradle
index d7339b9..c8729b6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -27,7 +27,7 @@ project.gradle.startParameter.excludedTaskNames.add('test')
 
 allprojects  {
   group = 'org.apache.mnemonic'
-  version = '0.14.0-SNAPSHOT'
+  version = '0.15.0-SNAPSHOT'
 }
 
 subprojects {
@@ -55,8 +55,8 @@ subprojects {
     mavenCentral()
   }
 
-  sourceCompatibility = 1.8
-  targetCompatibility = 1.8
+  sourceCompatibility = 14
+  targetCompatibility = 14
   tasks.withType(JavaCompile) {
     options.encoding = 'UTF-8'
   }
diff --git a/tools/source-assembly.xml b/tools/source-assembly.xml
index 0653f76..1b7240e 100644
--- a/tools/source-assembly.xml
+++ b/tools/source-assembly.xml
@@ -277,10 +277,7 @@
         <include>pom.xml</include>
         <include>tools/**</include>
         <include>docker/**</include>
-        <include>gradle/**</include>
         <include>settings.gradle</include>
-        <include>gradlew</include>
-        <include>gradlew.bat</include>
         <include>build.gradle</include>
       </includes>
       <useDefaultExcludes>true</useDefaultExcludes>