Search Gradle plugins

com.undefinedlabs.attach-classes-metadata

Adds a companion file in the same path of every compiled class for a certain JAR with information that can be obtained at runtime.

https://scope.dev

Sources: https://github.com/undefinedlabs/metadata-gradle-plugin.git

Version 0.1.0-SNAPSHOT

0.1.0-SNAPSHOT

Created 26 May 2020.

Adds a companion file in the same path of every compiled class for a certain JAR with information that can be obtained at runtime.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.undefinedlabs.attach-classes-metadata") version "0.1.0-SNAPSHOT"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.undefinedlabs:metedata-gradle-plugin:0.1.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.undefinedlabs.attach-classes-metadata")
  • Applying plugins to all subprojects .