Search Gradle plugins

com.tribe3k.alluro

Gradle plugin to generate PlantUML directly from the Gradle Dependencies task.

https://github.com/atribe/alluro

Sources: https://github.com/atribe/alluro

Version 1.0.1

Created 30 March 2018.

Gradle plugin to generate PlantUML directly from the Gradle Dependencies task.

Using the plugins DSL:

plugins {
  id("com.tribe3k.alluro") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.tribe3k:alluro:1.0.1")
  }
}

apply(plugin = "com.tribe3k.alluro")

Using the plugins DSL:

plugins {
  id "com.tribe3k.alluro" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.tribe3k:alluro:1.0.1"
  }
}

apply plugin: "com.tribe3k.alluro"

Learn how to apply plugins to subprojects