Changed how the system packages property is calculated to make it a
little more resistant to failure; achieved this my moving the comma to
the platform properties so that if the execution platform is not known
then we don't end up with a dangling comma.
git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@501924 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/main/src/main/resources/config.properties b/main/src/main/resources/config.properties
index 784967d..4da42aa 100644
--- a/main/src/main/resources/config.properties
+++ b/main/src/main/resources/config.properties
@@ -21,7 +21,7 @@
org.osgi.framework.system.packages=org.osgi.framework; version=1.3.0, \
org.osgi.service.packageadmin; version=1.2.0, \
org.osgi.service.startlevel; version=1.0.0, \
- org.osgi.service.url; version=1.0.0, \
+ org.osgi.service.url; version=1.0.0 \
${jre-${java.specification.version}}
#org.osgi.framework.bootdelegation=sun.*,com.sun.*
@@ -46,7 +46,7 @@
#
# Java platform package export properties.
#
-jre-1.3= \
+jre-1.3=, \
javax.accessibility; \
javax.accessibility.resources; \
javax.naming; \
@@ -92,7 +92,7 @@
org.omg.stub.java.rmi; \
version="1.3.0"
-jre-1.4= \
+jre-1.4=, \
javax.accessibility; \
javax.imageio; \
javax.imageio.event; \
@@ -186,7 +186,7 @@
org.xml.sax.helpers; \
version="1.4.0"
-jre-1.5= \
+jre-1.5=, \
javax.accessibility; \
javax.activity; \
javax.imageio; \