echocat/gradle-golang-plugin

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

gtinjr opened this issue · 1 comments

It does not work with gradle 3.5

  • Where:
    Build file '/Users/gtin/workspace/yieldedge/search/backend/proxy/gateway/build.gradle' line: 2

  • What went wrong:
    An exception occurred applying plugin request [id: 'org.echocat.golang', version: '0.1.16']

Failed to apply plugin [id 'org.echocat.golang']
Declaring custom 'clean' task when using the standard Gradle lifecycle plugins is not allowed.

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"