Skip to content

Tags: tvaishnav/gradle

Tags

REL_3.1

Toggle REL_3.1's commit message

Verified

This commit was signed with the committer’s verified signature.
wolfs Stefan Wolf
Used fixed versions for build init templates

Gradle builds started failing on every branch on Java 7 two days ago when TestNG released a new version (6.9.13) built with Java 8.
java.lang.UnsupportedClassVersionError: org/testng/ITestListener : Unsupported major.minor version 52.0

This can be seen e.g. here on CI: https://builds.gradle.org/viewLog.html?buildId=1322067

The root cause of this is that we use dynamic versions (latest.release) to resolve versions of librairies used in the build init templates. This is dangerous.
See https://github.com/gradle/gradle/blob/master/subprojects/build-init/build-init.gradle#L39-L84

As a quick fix for 3.1 we use fixed versions on the release branch. We need to think more holistically about that for
3.2.

gradle/gradle-private#302
+review REVIEW-6252

v3.1.0-RC1

Toggle v3.1.0-RC1's commit message

Verified

This tag was signed with the committer’s verified signature.
wolfs Stefan Wolf
Publish version 3.1 RC1

REL_3.1-rc-1

Toggle REL_3.1-rc-1's commit message
Fix test

v3.0.0

Toggle v3.0.0's commit message
Publish version 3.0

v3.0.0-RC2

Toggle v3.0.0-RC2's commit message
Publish version 3.0 RC2

REL_3.0

Toggle REL_3.0's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
lhotari Lari Hotari
Update gradle wrapper version

REL_3.0-rc-2

Toggle REL_3.0-rc-2's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
lhotari Lari Hotari
Update gradle wrapper version

v3.0.0-RC1

Toggle v3.0.0-RC1's commit message

Verified

This tag was signed with the committer’s verified signature.
wolfs Stefan Wolf
Publish version 3.0 RC1

REL_3.0-rc-1

Toggle REL_3.0-rc-1's commit message
Remove test flakiness by allowing initial scala compilation to take l…

…onger

The test waits 20s for any build activity, but initial scala compilation can
take up to 1 minute to complete. This makes this tests fail for reasons
completely unrelated to the feature being tested (scala continuous build).

Bumping the timeout should make this test non-flaky, but it will leave the
underlying problem that Scala compilation sometimes is exceedingly slow.