We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5120d5c commit ae08812Copy full SHA for ae08812
build.gradle
@@ -86,6 +86,10 @@ subprojects {
86
}
87
88
89
+ task licenseFile {
90
+ outputs.file(project.parent.file('LICENSE.txt'))
91
+ }
92
+
93
task dependencySearch(type: DependencyInsightReportTask) {
94
description 'Searches all projects for a dependency'
95
group 'help'
okapi-shade/build.gradle
@@ -69,7 +69,10 @@ shadowJar {
69
exclude "META-INF/services/**/*"
70
exclude "META-INF/NOTICE*"
71
exclude "META-INF/LICENSE*"
72
+ exclude "META-INF/DEPENDENCIES*"
73
exclude "utf8.json"
74
75
+ metaInf { from tasks.licenseFile }
76
77
78
assemble.dependsOn shadowJar
0 commit comments