echocat / gradle-golang-plugin

Gradle plugin to build, test and do other stuff of Golang projects.
https://github.com/echocat/gradle-golang-plugin
Mozilla Public License 2.0
44 stars 8 forks source link

Declaring custom 'clean' task when using the standard Gradle lifecycle plugins is not allowed #32

Open gtinjr opened 7 years ago

gtinjr commented 7 years ago

It does not work with gradle 3.5

amimas commented 6 years ago

You must be using other standard gradle plugin that also uses same task name as this plugin. You need to apply the plugin using it's minor extention. That will resolve the task name conflict issues.

apply plugin: "org.echocat.golang-minor"