Skip to content

Commit

Permalink
Merge pull request #679 from eclipse/cd_issue678
Browse files Browse the repository at this point in the history
Copy Bnd version of Manifest to META-INF. Fixes #678
  • Loading branch information
cdietrich authored Oct 25, 2022
2 parents a8153a4 + eb017ae commit 17bb202
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gradle/manifest-gen.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jar.bnd (
'Bundle-Vendor': 'Eclipse LSP4J',
'Bundle-RequiredExecutionEnvironment': 'JavaSE-1.8',
"-exportcontents": "org.eclipse.lsp4j.*",
"-savemanifest": "$buildDir/tmp/bnd/MANIFEST.MF",
)

//------------------------------------------------------
Expand Down Expand Up @@ -63,7 +64,7 @@ sourcesJar {

task eclipseManifest(type: Copy) {
dependsOn(jar)
from "$buildDir/tmp/jar/MANIFEST.MF"
from "$buildDir/tmp/bnd/MANIFEST.MF"
into 'META-INF'
}

Expand Down

0 comments on commit 17bb202

Please sign in to comment.