| configure(subprojects.findAll { !it.name.contains('integrationtest') }) { Project project -> | |
| apply plugin: 'biz.aQute.bnd.builder' | |
| jar.bndfile = "bundle.bnd" | |
| jar.manifest.attributes( | |
| '-classpath': sourceSets.main.output.classesDirs.asPath, | |
| 'Bundle-Vendor': 'Eclipse Virgo', | |
| 'Bundle-SymbolicName': project.name, | |
| '-removeheaders': 'Bnd-LastModified,Created-By', | |
| ) | |
| } |