You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2020/10/21 03:20:51 UTC

[groovy] branch master updated (98cf036 -> 4536f33)

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

paulk pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git.


    from 98cf036  GROOVY-9787: Bump javaparser to 3.16.2
     new de8a21a  remove unused config
     new 4536f33  fix build for JDK14+

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 build.gradle                           | 15 ---------------
 subprojects/tests-preview/build.gradle |  1 +
 2 files changed, 1 insertion(+), 15 deletions(-)


[groovy] 02/02: fix build for JDK14+

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 4536f33ec0e7cd3d50a3394bbc0cf5b4c99a09e4
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Oct 21 13:20:39 2020 +1000

    fix build for JDK14+
---
 subprojects/tests-preview/build.gradle | 1 +
 1 file changed, 1 insertion(+)

diff --git a/subprojects/tests-preview/build.gradle b/subprojects/tests-preview/build.gradle
index 3e3b2fd..b5d03a2 100644
--- a/subprojects/tests-preview/build.gradle
+++ b/subprojects/tests-preview/build.gradle
@@ -19,6 +19,7 @@
 plugins {
     id 'groovy'
     id 'org.apache.groovy-common'
+    id 'org.apache.groovy-internal'
 }
 
 dependencies {


[groovy] 01/02: remove unused config

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit de8a21add6ebbeee74675072971e7985d1def389
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Oct 21 12:12:18 2020 +1000

    remove unused config
---
 build.gradle | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/build.gradle b/build.gradle
index 35cb3ba..b84fbe0 100644
--- a/build.gradle
+++ b/build.gradle
@@ -268,18 +268,3 @@ sonarqube {
 //        property "sonar.coverage.jacoco.xmlReportPaths", "${rootProject.buildDir}/reports/jacoco/jacocoAllReport/jacocoAllReport.xml"
     }
 }
-
-
-// UNCOMMENT THE FOLLOWING TASKS IF YOU WANT TO RUN LICENSE CHECKING
-//task licenseFormatCustom(type:nl.javadude.gradle.plugins.license.License) {
-//    source = fileTree(dir:"src").include ("**/*.java",'**/*.groovy','**/*.html','**/*.css','**/*.xml','**/*.properties','**/*.properties')
-//}
-//
-//task licenseFormatGradle(type:nl.javadude.gradle.plugins.license.License) {
-//    source = files(fileTree(dir:projectDir).include('**/*.gradle'),fileTree('buildSrc').include('**/*.groovy'))
-//}
-//
-//licenseFormat.dependsOn licenseFormatCustom
-//licenseFormat.dependsOn licenseFormatGradle
-//
-