Skip to content

Commit

Permalink
licenser 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamierocks committed Oct 1, 2020
1 parent 4941065 commit c30289f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand All @@ -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 {
Expand All @@ -35,16 +35,16 @@ task groovydocJar(type: Jar, dependsOn: groovydoc) {

gradlePlugin {
plugins {
licenser {
licenserPlugin {
id = 'org.cadixdev.licenser'
implementationClass = 'org.cadixdev.gradle.licenser.Licenser'
}
}
}

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']

Expand Down

0 comments on commit c30289f

Please sign in to comment.