Search Gradle plugins

Version 0.0.3

Created 14 May 2021.

A tool for generating UML diagrams from Kotlin source code

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.xcporter.metaview"

Learn how to apply plugins to subprojects