Skip to content
Snippets Groups Projects
Commit a7a5dbb3 authored by Sven Gestegård Robertz's avatar Sven Gestegård Robertz
Browse files

removed addition of OSGi manifest from jar files

parent e017ed6b
No related branches found
No related tags found
No related merge requests found
...@@ -20,21 +20,19 @@ MODULES=Constant \ ...@@ -20,21 +20,19 @@ MODULES=Constant \
all: labcomm.jar labcomm2014.jar labcomm2006.jar all: labcomm.jar labcomm2014.jar labcomm2006.jar
labcomm.jar: gen/JAVAC osgi-manifest-all.txt labcomm.jar: gen/JAVAC
echo $@ echo $@
cd gen ; jar cfm ../$@ ../osgi-manifest-all.txt \ cd gen ; jar cfm ../$@ \
se/lth/control/labcomm/*.class \ se/lth/control/labcomm/*.class \
se/lth/control/labcomm2006/*.class se/lth/control/labcomm2006/*.class
labcomm2014.jar: gen/JAVAC osgi-manifest-2014.txt labcomm2014.jar: gen/JAVAC
echo $@ echo $@
cd gen ; jar cfm ../$@ ../osgi-manifest-2014.txt \ cd gen ; jar cf ../$@ se/lth/control/labcomm/*.class
se/lth/control/labcomm/*.class
labcomm2006.jar: gen/JAVAC osgi-manifest-2006.txt labcomm2006.jar: gen/JAVAC
echo $@ echo $@
cd gen ; jar cfm ../$@ ../osgi-manifest-2006.txt \ cd gen ; jar cf ../$@ se/lth/control/labcomm2006/*.class
se/lth/control/labcomm2006/*.class
gen: gen:
mkdir gen mkdir gen
......
Bundle-Description: Provides Labcomm to bundles
Bundle-ManifestVersion: 2
Bundle-Name: Labcomm OSGi
Bundle-SymbolicName: se.lth.control.labcomm2006
Bundle-Vendor: LTH
Bundle-Version: 1.0.0
Export-Package: se.lth.control.labcomm2006;version="1.0.0"
Bundle-Description: Provides Labcomm 2014 to bundles
Bundle-ManifestVersion: 2
Bundle-Name: Labcomm OSGi
Bundle-SymbolicName: se.lth.control.labcomm2014
Bundle-Vendor: LTH
Bundle-Version: 1.0.0
Export-Package: se.lth.control.labcomm;version="1.0.0"
Bundle-Description: Provides Labcomm 2006/2014 to bundles
Bundle-ManifestVersion: 2
Bundle-Name: Labcomm OSGi
Bundle-SymbolicName: se.lth.control.labcomm-all
Bundle-Vendor: LTH
Bundle-Version: 1.0.0
Export-Package: se.lth.control.labcomm2006;version="1.0.0",
se.lth.control.labcomm;version="1.0.0"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment