搜索Gradle插件

版本 1.0.2(最新版)

1.0.2

创建于 2020年5月7日。

Gradle插件,用于从代码构建PlantUML图(用于活动文档和最新文档)

使用插件DSL

plugins {
  id("com.github.roroche.plantuml") version "1.0.2"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.roroche:plantuml-gradle-plugin:1.0.2")
  }
}

apply(plugin = "com.github.roroche.plantuml")

使用插件DSL

plugins {
  id "com.github.roroche.plantuml" version "1.0.2"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.roroche:plantuml-gradle-plugin:1.0.2"
  }
}

apply plugin: "com.github.roroche.plantuml"

learn how to apply plugins to subprojects