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)
Created 13 July 2022.
A tool for generating UML diagrams from Kotlin source code
Add this plugin to your build using the plugins DSL:
plugins {
id("com.xcporter.metaview") version "0.0.6"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.xcporter.metaview:com.xcporter.metaview.gradle.plugin:0.0.6") }
It can then be applied in the precompiled script plugin:plugins { id("com.xcporter.metaview") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.xcporter.metaview:com.xcporter.metaview.gradle.plugin:0.0.6") } } apply(plugin = "com.xcporter.metaview")
- Applying plugins to all subprojects .