Search Gradle plugins

Version 0.0.4

0.0.4

Created 14 May 2021.

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.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.xcporter:metaview:0.0.4")
      }
    }
    
    apply(plugin = "com.xcporter.metaview")
  • Applying plugins to all subprojects .