Skip to content

Commit 1fed6ab

Browse files
author
Grégoire Neuville
committed
Fix previous commit
1 parent 854d195 commit 1fed6ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,10 @@ configure(subprojects.findAll { it.name != "props-core" }) {
169169
instruction 'Signature-Version', project.fjVersion
170170
instruction 'Bundle-ActivationPolicy', 'lazy'
171171
instruction 'Bundle-Vendor', 'functionaljava.org'
172-
if(project.name != "core") {
173-
instruction 'Require-Bundle', 'org.functionaljava;bundle-version="'+project.fjBaseVersion+'"'
174-
}
172+
if(project.name != "core") {
173+
instruction 'Require-Bundle', 'org.functionaljava;bundle-version="'+project.fjBaseVersion+'"'
174+
}
175+
instruction 'Automatic-Module-Name', "functionaljava${project.name == 'core' ? '' : "-$project.name"}"
175176
}
176177
}
177178

@@ -181,7 +182,6 @@ configure(subprojects.findAll { it.name != "props-core" }) {
181182
buildCommand 'org.eclipse.pde.ManifestBuilder'
182183
buildCommand 'org.eclipse.pde.SchemaBuilder'
183184
}
184-
instruction 'Automatic-Module-Name', "functionaljava${project.name == 'core' ? '' : "-$project.name"}"
185185
}
186186

187187
// Output MANIFEST.MF statically so eclipse can see it for plugin development

0 commit comments

Comments
 (0)