Search Gradle plugins

Version 0.0.2

Created 11 April 2019.

Adds the MIT License to the POM of a nebula publication to allow for publishing to Maven Central.

Using the plugins DSL:

plugins {
  id("tylerthrailkill.nebula-mit-license") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.tylerthrailkill.gradle:nebula-mit-license:0.0.2")
  }
}

apply(plugin = "tylerthrailkill.nebula-mit-license")

Using the plugins DSL:

plugins {
  id "tylerthrailkill.nebula-mit-license" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.tylerthrailkill.gradle:nebula-mit-license:0.0.2"
  }
}

apply plugin: "tylerthrailkill.nebula-mit-license"

Learn how to apply plugins to subprojects