Add Eclipse-(PatchFragment|ExtensibleAPI) manifest data

to the jar manifests. Thanks to Jens Offenbach for reporting.
This commit is contained in:
Florian Schmaus 2014-04-28 17:42:23 +02:00
parent bc176d72a3
commit 5a19668544
2 changed files with 4 additions and 2 deletions

View File

@ -190,7 +190,8 @@ subprojects {
(subprojects - project(':core'))*.jar { (subprojects - project(':core'))*.jar {
manifest { manifest {
attributes('Bundle-SymbolicName': project.group + '-' + project.name, attributes('Bundle-SymbolicName': project.group + '-' + project.name,
'Fragment-Host': project.group) 'Fragment-Host': project.group,
'Eclipse-PatchFragment': 'true')
from sharedManifest from sharedManifest
} }
} }

View File

@ -15,7 +15,8 @@ dependencies {
} }
jar { jar {
manifest { manifest {
attributes('Bundle-SymbolicName': project.group) attributes('Bundle-SymbolicName': project.group,
'Eclipse-ExtensibleAPI: true')
from sharedManifest from sharedManifest
} }
} }