All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aQute.bnd.build.model.OSGI_CORE Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.bnd.build.model;

import java.io.IOException;
import java.util.jar.Manifest;

import aQute.bnd.osgi.Domain;

public enum OSGI_CORE {
	R4_0_1, R4_2_1, R4_3_0, R4_3_1, R5_0_0, R6_0_0;

	private Domain manifest;

	public Domain getManifest() throws IOException {
		if (manifest == null) {
			Manifest m = new Manifest(OSGI_CORE.class.getResourceAsStream("osgi-core/" + name() + ".mf"));
			manifest = Domain.domain(m);
		}
		return manifest;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy