diff --git a/README.md b/README.md index 6d2a03b..bf6c312 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ For a simple project you only need to apply the licenser plugin to your project: ```gradle plugins { - id 'net.minecrell.licenser' version '0.4.1' + id 'org.cadixdev.licenser' version '0.5.0' } ``` diff --git a/build.gradle b/build.gradle index 9c8b635..4e231ef 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ plugins { id 'java-gradle-plugin' id 'groovy' - id 'com.gradle.plugin-publish' version '0.9.10' + id 'com.gradle.plugin-publish' version '0.12.0' id 'net.minecrell.licenser' version '0.4.1' } @@ -11,7 +11,7 @@ sourceCompatibility = '1.8' targetCompatibility = '1.8' group = 'org.cadixdev.gradle' -version = '0.5.0-SNAPSHOT' +version = '0.5.0' description = 'A simple license header manager for Gradle' dependencies { @@ -35,7 +35,7 @@ task groovydocJar(type: Jar, dependsOn: groovydoc) { gradlePlugin { plugins { - licenser { + licenserPlugin { id = 'org.cadixdev.licenser' implementationClass = 'org.cadixdev.gradle.licenser.Licenser' } @@ -43,8 +43,8 @@ gradlePlugin { } pluginBundle { - website = 'https://github.com/CadixDev/licenser' - vcsUrl = website + website = 'https://www.cadixdev.org/' + vcsUrl = 'https://github.com/CadixDev/licenser' description = project.description tags = ['license']