Gogradle Versions Save

A Gradle Plugin Providing Full Support for Go

v0.11.4

4 years ago

This is a patch release which fixes https://github.com/gogradle/gogradle/issues/287

Thanks @marcofeltmann for contribution.

v0.11.3

5 years ago

This is a bug-fix release which fixes https://github.com/gogradle/gogradle/issues/279

v0.11.2

5 years ago

v0.11.1

5 years ago

This is a patch release, which fixes:

v0.11

5 years ago

Gogradle 0.11 release note

We're glad to release Gogradle 0.11.

Improvements in Gogradle 0.11

  • Gradle 5.x support.
  • JDK 11 support.

Breaking changes

Since Gradle 5.0, plugins are no longer allowed to register tasks with same name as Gradle internal tasks, such as init/build. Most of the tasks are renamed as follows:

clean goClean
prepare goPrepare
showGopathGoroot showGopathGoroot
init goInit
resolveBuildDependencies resolveBuildDependencies
resolveTestDependencies resolveTestDependencies
installDependencies installDependencies
dependencies goDependencies
vendor goVendor
lock goLock
build goBuild
test goTest
coverage goCover
vet goVet
fmt gofmt
check goCheck

Please be aware of this change and consult Tasks for more details.

Fixed bugs

etcd dependency creates near infinite vendor folder hierarchy

v0.10.3

5 years ago

This is a bug fix release which fixes #272 .

v0.10.2

5 years ago

This is a patch release which fixes #243 .

v0.10

5 years ago

Gogradle 0.10 is a minor release, which focuses on improving dependency resolution mechanism.

This release fixes #207

v0.9.3

5 years ago

This is a patch release.

This release fixes #225

In multi-project scenario, when the JVM tries to re-lock the global cache metadata file, an OverlappingFileLockException will be thrown.

Thanks @alanmyrvold for the contribution.

v0.9.1

5 years ago

This is a patch release.

This fixes https://github.com/gogradle/gogradle/issues/217

Previously Gogradle registered the output with incorrect unrendered name ${GOOS}-${GOARCH}, which would cause UP-TO-DATE check fail.