搜索 Gradle 插件

版本 0.0.6 (最新版)

0.0.6

创建于 2022 年 7 月 13 日。

一个从 Kotlin 源代码生成 UML 图的工具

使用 插件 DSL

plugins {
  id("com.xcporter.metaview") version "0.0.6"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.xcporter:metaview:0.0.6")
  }
}

apply(plugin = "com.xcporter.metaview")

使用 插件 DSL

plugins {
  id "com.xcporter.metaview" version "0.0.6"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.xcporter:metaview:0.0.6"
  }
}

apply plugin: "com.xcporter.metaview"

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