Skip to content

Commit 77882ea

Browse files
Fix build.gradle
1 parent 3b1eb09 commit 77882ea

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,8 @@ java {
127127
// If you plan to use a different file for the license, don't forget to change the file name here!
128128
["jar", "sourcesJar"].each {
129129
tasks.named(it).configure {
130-
inputs.property "archivesName", project.base.archivesName
131-
132-
from("LICENSE") {
133-
rename { "${it}_${task.inputs.properties.archivesName}"}
130+
from("LICENSE.md") {
131+
rename { "${it}_${archivesBaseName}" }
134132
}
135133
}
136134
}

0 commit comments

Comments
 (0)