搜索Gradle插件

版本0.3.0(最新版)

0.3.0

创建于2024年4月18日。

将PlantUML .puml文件转换为支持的输出格式之一的插件

使用插件DSL

plugins {
  id("io.github.redgreencoding.plantuml") version "0.3.0"
}

使用旧插件应用

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

apply(plugin = "io.github.redgreencoding.plantuml")

使用插件DSL

plugins {
  id "io.github.redgreencoding.plantuml" version "0.3.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.redgreencoding:plantuml-gradle-plugin:0.3.0"
  }
}

apply plugin: "io.github.redgreencoding.plantuml"

学习如何将插件应用于子项目