org.protelis.protelis2kotlin
Owner: Danilo Pianini
A plugin that translates Protelis modules into Kotlin collections of functions
https://github.com/Protelis/Protelis-KDoc-generator
Sources: https://github.com/Protelis/Protelis-KDoc-generator
Version 0.1.2 (latest)
Created 06 June 2019.
A plugin that translates Protelis modules into Kotlin collections of functions
Add this plugin to your build using the plugins DSL:
plugins {
id("org.protelis.protelis2kotlin") version "0.1.2"
}
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.protelis.protelis2kotlin:org.protelis.protelis2kotlin.gradle.plugin:0.1.2") }
It can then be applied in the precompiled script plugin:plugins { id("org.protelis.protelis2kotlin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.protelis.protelis2kotlin:org.protelis.protelis2kotlin.gradle.plugin:0.1.2") } } apply(plugin = "org.protelis.protelis2kotlin")
- Applying plugins to all subprojects .