Skip to content

Commit

Permalink
Licenser breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstaeding committed Sep 16, 2021
1 parent e94a213 commit 9cf7c86
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion annotation-processor/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
license {
header = project.rootProject.file("HEADER.txt")
header(project.rootProject.file("HEADER.txt"))
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ val gsonVersion: String by project
val slf4jVersion: String by project

license {
header = project.file("HEADER.txt")
header(project.file("HEADER.txt"))
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.cadixdev.gradle.licenser.Licenser

plugins {
`java-library`
id("org.cadixdev.licenser").version("0.5.1")
id("org.cadixdev.licenser").version("0.6.1")
id("com.github.johnrengelman.shadow").version("7.0.0")
}

Expand Down
1 change: 1 addition & 0 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
`kotlin-dsl`
checkstyle
id("net.kyori.indra.publishing") version "2.0.6"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion native/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ val guavaVersion: String by project.extra
val nettyVersion: String by project.extra

license {
header = project.rootProject.file("HEADER.txt")
header(project.rootProject.file("HEADER.txt"))
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion proxy/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ val semver4jVersion: String by project.extra
val terminalConsoleAppenderVersion: String by project.extra

license {
header = project.rootProject.file("HEADER.txt")
header(project.rootProject.file("HEADER.txt"))
}

dependencies {
Expand Down

0 comments on commit 9cf7c86

Please sign in to comment.