Owner:
sadheesh venkatachalam
Gosu language compiler for Gradle
Version 0.3.0
Created 23 March 2017.
Gosu language compiler for Gradle. Built with Gradle 3.4.1.
This has also been tested extensively with Gradle version(s): 2.9, 2.10, 2.11, 2.12, 2.13, 2.14.1, 3.0, 3.1, 3.2.1, 3.3
Projects applying this plugin require a compile-time dependency on the gosu-core-api library.
This version requires Gosu 1.13.9 or greater, or 1.14.2 or greater.
Please include this in the depencencies closure:
dependencies {
compile group: 'org.gosu-lang.gosu', name: 'gosu-core-api', version: '1.14.5'
}
Add this plugin to your build using the plugins DSL:
plugins {
id("org.gosu-lang.gosu") version "0.3.0"
}
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.gosu-lang.gosu:org.gosu-lang.gosu.gradle.plugin:0.3.0") }It can then be applied in the precompiled script plugin:plugins { id("org.gosu-lang.gosu") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.gosu-lang.gosu:org.gosu-lang.gosu.gradle.plugin:0.3.0") } } apply(plugin = "org.gosu-lang.gosu") - Applying plugins to all subprojects .