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.3.1-dev0h+129b5d5

0.3.1-dev0h+129b5d5

Created 20 July 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.3.1-dev0h+129b5d5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.protelis:protelis-kdoc-generator:0.3.1-dev0h+129b5d5")
      }
    }
    
    apply(plugin = "org.protelis.protelisdoc")
  • Applying plugins to all subprojects .