Search Gradle plugins

org.dbtools.license-manager

License Manager is a library that makes generating a json file of all of a project dependencies easy.

https://github.com/jeffdcamp/license-manager-plugin

Sources: https://github.com/jeffdcamp/license-manager-plugin.git

Version 1.4.0 (latest)

Created 19 March 2024.

License Manager is a library that makes generating a json file of all of a project dependencies easy.

Using the plugins DSL:

plugins {
  id("org.dbtools.license-manager") version "1.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.dbtools:license-manager:1.4.0")
  }
}

apply(plugin = "org.dbtools.license-manager")

Using the plugins DSL:

plugins {
  id "org.dbtools.license-manager" version "1.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.dbtools:license-manager:1.4.0"
  }
}

apply plugin: "org.dbtools.license-manager"

Learn how to apply plugins to subprojects