Search Gradle plugins

org.protelis.protelisdoc

A plugin that translates Protelis modules to Kotlin code, then generates the function documentation via Dokka

https://github.com/Protelis/Protelis-KDoc-generator

Sources: https://github.com/Protelis/Protelis-KDoc-generator

Version 0.4.0-dev07+7cbdaff

Created 07 October 2020.

A plugin that translates Protelis modules to Kotlin code, then generates the function documentation via Dokka

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.protelis.protelisdoc") version "0.4.0-dev07+7cbdaff"
}

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.protelisdoc:org.protelis.protelisdoc.gradle.plugin:0.4.0-dev07+7cbdaff")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.protelis.protelisdoc")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.protelis.protelisdoc:org.protelis.protelisdoc.gradle.plugin:0.4.0-dev07+7cbdaff")
      }
    }
    
    apply(plugin = "org.protelis.protelisdoc")
  • Applying plugins to all subprojects .