Search Gradle plugins

org.golo-lang.golo

This plugin provides a task type for compiling Golo code.

http://github.com/golo-lang/gradle-golo-plugin

Version 0.6 (latest)

Created 10 April 2016.

This plugin provides a task type for compiling Golo code.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.golo-lang.golo") version "0.6"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.golo-lang.golo:org.golo-lang.golo.gradle.plugin:0.6")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.golo-lang.golo")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.golo-lang.golo:org.golo-lang.golo.gradle.plugin:0.6")
      }
    }
    
    apply(plugin = "org.golo-lang.golo")
  • Applying plugins to all subprojects .