Hi Cédric, the commit below breaks the JDK 6 build: java.lang.UnsupportedClassVersionError: me/champeau/gradle/buildscans/RecipesPlugin : Unsupported major.minor version 51.0
On Tue, Mar 14, 2017 at 8:12 PM, <[email protected]> wrote: > Repository: groovy > Updated Branches: > refs/heads/GROOVY_2_4_X 313150e47 -> 1f629229b > > > Add build scans to 2.4 branch > > > Project: http://git-wip-us.apache.org/repos/asf/groovy/repo > Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/1f629229 > Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/1f629229 > Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/1f629229 > > Branch: refs/heads/GROOVY_2_4_X > Commit: 1f629229b6a9513187e21dba5463166e3d1dbd76 > Parents: 313150e > Author: Cedric Champeau <[email protected]> > Authored: Tue Mar 14 11:11:13 2017 +0100 > Committer: Cedric Champeau <[email protected]> > Committed: Tue Mar 14 11:11:13 2017 +0100 > > ---------------------------------------------------------------------- > build.gradle | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > ---------------------------------------------------------------------- > > > http://git-wip-us.apache.org/repos/asf/groovy/blob/1f629229/build.gradle > ---------------------------------------------------------------------- > diff --git a/build.gradle b/build.gradle > index c2e095a..58410c0 100644 > --- a/build.gradle > +++ b/build.gradle > @@ -42,6 +42,20 @@ buildscript { > } > } > > +plugins { > + id 'com.gradle.build-scan' version '1.6' > + id 'me.champeau.buildscan-recipes' version '0.1.7' > +} > + > +buildScan { > + licenseAgreementUrl = 'https://gradle.com/terms-of-service' > + licenseAgree = 'yes' > + publishAlways() > + recipe 'git-commit', baseUrl: 'https://github.com/apache/groovy/tree' > + recipe 'teamcity', baseUrl: 'https://ci.groovy-lang.org', guest: 'true' > + recipes 'git-status', 'teamcity', 'travis-ci' > +} > + > apply from: 'gradle/filter.gradle' > apply from: 'gradle/indy.gradle' > apply from: 'gradle/publish.gradle' >
