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 af36bd7 commit 7465c8dCopy full SHA for 7465c8d
plugins/edc-build/src/main/java/org/eclipse/edc/plugins/edcbuild/conventions/JarConvention.java
@@ -31,7 +31,8 @@ public void apply(Project target) {
31
var rootProjectPath = target.getRootProject().getProjectDir().getAbsolutePath();
32
var licenseFile = Path.of(rootProjectPath, "LICENSE");
33
var noticeFile = Path.of(rootProjectPath, "NOTICE.md");
34
- jarTask.metaInf(metaInf -> metaInf.from(licenseFile.toString(), noticeFile.toString()));
+ var dependenciesFile = Path.of(rootProjectPath, "DEPENDENCIES");
35
+ jarTask.metaInf(metaInf -> metaInf.from(licenseFile.toString(), noticeFile.toString(), dependenciesFile.toString()));
36
}
37
38
0 commit comments