com.xcporter.metaview
Owner: Alexander C Porter
A tool for generating UML diagrams from Kotlin source code
https://github.com/xcporter/metaView
Sources: https://github.com/xcporter/metaView
Version 0.0.6 (latest)
0.0.6
Created 13 July 2022.
A tool for generating UML diagrams from Kotlin source code
Using the plugins DSL:
plugins {
id("com.xcporter.metaview") version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.xcporter:metaview:0.0.6")
}
}
apply(plugin = "com.xcporter.metaview")
Using the plugins DSL:
plugins {
id "com.xcporter.metaview" version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.xcporter:metaview:0.0.6"
}
}
apply plugin: "com.xcporter.metaview"