org.gosu-lang.gosu
Owner:
sadheesh venkatachalam
Gosu language compiler for Gradle
Sources: https://github.com/gosu-lang/gradle-gosu-plugin
Version 0.1.2-alpha
Created 06 November 2015.
Gosu language compiler for Gradle.
Projects applying this plugin require compile-time reference to the gosu-core-api library. Please include this in the depencencies closure:
dependencies {
compile group: 'org.gosu-lang.gosu', name: 'gosu-core-api', version: '1.9'
}
Add this plugin to your build using the plugins DSL:
plugins {
id("org.gosu-lang.gosu") version "0.1.2-alpha"
}
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.1.2-alpha") }
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.1.2-alpha") } } apply(plugin = "org.gosu-lang.gosu")
- Applying plugins to all subprojects .