Updated website from GitHub at 2018-11-17 12:56:05
diff --git a/docs/committer/publish-website.md b/docs/committer/publish-website.md
new file mode 100644
index 0000000..f5d1279
--- /dev/null
+++ b/docs/committer/publish-website.md
@@ -0,0 +1,34 @@
+# How to publish website
+
+The [Eclipse Concierge Website](http://eclipse.org/concierge) will be published from Git repository at `https://git.eclipse.org/r/a/www.eclipse.org/concierge`.
+
+This repository is meanwhile only writable through Gerrit. Project committers are allowed to write directly to master, which will then be published to Eclipse Webserver within short time frame.
+
+As the maintenance of the website in a different repository is error-prone, we will maintain the website now from main repository at GitHub.
+
+Parts of documentation is even shared (e.g. all Markdown files). So website can be generated and then easily published to Gerrit repository.
+
+## How to publish
+
+There is a helper script to public the website:
+
+```
+# will clean all generated files
+./distribution/publish/publishWebsite.sh clean
+
+# will clone current repo and update it with generated website
+./distribution/publish/publishWebsite.sh prepare
+
+# now the changes can be checked manually
+
+# will commit all changes to repo 
+./distribution/publish/publishWebsite.sh commit
+
+# will push master to Gerrit repo
+./distribution/publish/publishWebsite.sh push
+
+# clean all generated files when done
+./distribution/publish/publishWebsite.sh clean
+```
+
+Note: you need committer rights to be able to push to Gerrit repo.
diff --git a/docs/committer/release-5.1.0.md b/docs/committer/release-5.1.0.md
new file mode 100644
index 0000000..93ace25
--- /dev/null
+++ b/docs/committer/release-5.1.0.md
@@ -0,0 +1,148 @@
+# Eclipse Concierge Release 5.1.0
+
+This document is intended for committers making a release of Eclipse Concierge. It described current approach for 5.1.0 and later. It might change for next versions when IDE/CI will be enhanced further on.
+
+## How to publish 5.1.0 release
+
+The Eclipse Concierge release 5.1.0 will be published first time as Maven artifacts. Therefore the CI build has been improved to support publishing the release 5.1.0 to all distribution channels:
+
+* Eclipse download server
+* Eclipse Nexus repository
+* Maven Central repository
+
+This page describes all steps which needed to be done to publish this version.
+
+### Preparation
+
+Prepare JIPP instance for publishing (needed only once):
+
+* JIPP instance at https://ci.eclipse.org/concierge/
+* Prepare JIPP instance to upload to Eclipse Nexus
+  * ask Webmaster to add credentials for upload to Eclipse Nexus to `~/.gradle/gradle.properties` (eclipseRepoUsername, eclipseRepoPassword)
+* Prepare JIPP instance to sign the Maven artifacts
+  * ask Webmaster to generate GPG key signed by Eclipse Foundation
+    * see https://bugs.eclipse.org/bugs/show_bug.cgi?id=540505
+  * ask Webmaster to add GPG key information to `~/.gradle/gradle.properties` (signing.gnupg.keyName, signing.gnupg.passphrase)
+* Prepare JIPP instance to upload to Maven central
+  * ask Webmaster to add credentials for upload to Maven Central to `~/.gradle/gradle.properties` (mavenCentralUsername, mavenCentralPassword)
+
+The file `~/.gradle/gradle.propeties` should look like:
+  
+```
+// publishing to Eclipse Nexus
+eclipseRepoUsername ≤the-eclipse-nexus-username>
+eclipseRepoPassword ≤the-eclipse-nexus-password>
+
+// signing artifacts with that key
+signing.gnupg.keyName=<the-key-id>
+signing.gnupg.passphrase=<the-key-passphrase>
+
+// publishing to Maven central
+mavenCentralUsername ≤the-maven-central-username>
+mavenCentralPassword ≤the-maven-central-password>
+```
+
+* apply latest changes to build scripts to support release build and maven upload. This includes signing of all artifacts.
+* Set `version.txt` to final version (e.g. `5.1.0`)
+* Commit all changes
+
+
+### CI Jobs
+
+We have 2 jobs running:
+* Build-5.1.0: this job does only make the build, but does NOT publish yet
+* Publish-5.1.0: this job does only publish the artifacts
+  # Download Server
+  # Maven Central
+  # Eclipse Nexus
+
+The build will essentially do:
+
+```
+./gradlew \
+ -Dhttp.proxyHost=proxy.eclipse.org \
+ -Dhttp.proxyPort=9898 \
+ -Dhttp.nonProxyHosts=*.eclipse.org \
+ -Dhttps.proxyHost=proxy.eclipse.org \
+ -Dhttps.proxyPort=9898 \
+ -Dhttps.nonProxyHosts=*.eclipse.org \
+ -Dorg.eclipse.concierge.tests.waitAfterFrameworkShutdown=1000 \
+ clean signMavenJavaPublication test distZip distTar assembleDist installDist
+```
+
+### Publish to downloads
+
+The script at `./distribution/publish/publish.sh` will upload/copy the built distribution archives to the Eclipse download server.
+
+It will check the version built (taken from version.txt):
+* If it is a snapshot version, it will be uploaded to http://download.eclipse.org/concierge/download/snapshots/?d
+* Otherwise if it is a release version (Milestone, ReleaseCandidate, Final version), it will be uploaded to http://download.eclipse.org/concierge/download/releases/?d
+* it will upload both a `concierge-incubation-<version>.zip` and a `concierge-incubation-<version>.tar.gz` archive of all artifacts
+
+```
+chmod u+x ./distribution/publish/publish.sh
+./distribution/publish/publish.sh release
+```
+
+
+
+References:
+* Snapshot builds: http://download.eclipse.org/concierge/download/snapshots/?d
+* Release builds:  http://download.eclipse.org/concierge/download/releaes/?d
+
+### Public to Eclipse Nexus (repo.eclipse.org)
+
+The gradle build is able to publish generated signed artifacts to a Maven repository. We configured the Eclipse Nexus repository as target for publishing.
+
+The publishing to Eclipse Nexus can be done that way:
+
+```
+./gradlew publishMavenJavaPublicationToEclipseRepoRepository
+```
+
+References:
+* Snapshot artifacts: https://repo.eclipse.org/content/repositories/concierge-snapshots/
+* Release artifacts:  https://repo.eclipse.org/content/repositories/concierge-releases/
+
+### Publish to Maven Central (
+
+* Create an account at Sonatype and ask to publish to group "org.eclipse.concierge"
+  * see https://issues.sonatype.org/browse/OSSRH-43650
+* Use the credentials to upload to Maven central into a staging repository
+
+The publishing to Maven central can be done that way:
+* make sure there is no stageing repository yet open/closed. If so drop the staging repo first
+* Then publish to staging repository
+
+```
+# Proxy needed to connect to Internet
+./gradlew \
+ -Dhttp.proxyHost=proxy.eclipse.org \
+ -Dhttp.proxyPort=9898 \
+ -Dhttp.nonProxyHosts=*.eclipse.org \
+ -Dhttps.proxyHost=proxy.eclipse.org \
+ -Dhttps.proxyPort=9898 \
+ -Dhttps.nonProxyHosts=*.eclipse.org \
+ publishMavenJavaPublicationToMavenCentralRepository
+```
+
+After upload to staging repository:
+* Go to staging repository at https://oss.sonatype.org/#stagingRepositories (login first)
+* If staging repository upload is complete, first "Close" it
+* If staging repository verifiation is fine, you can "Release" it
+
+
+References
+* Artifacts during staging: https://oss.sonatype.org/content/groups/staging/org/eclipse/concierge/
+* Release artifacts: https://oss.sonatype.org/content/groups/public/org/eclipse/concierge/
+* Good article how to publish to Maven Central
+  * https://medium.com/@nmauti/publishing-a-project-on-maven-central-8106393db2c3 (Part 1)
+  * https://medium.com/@nmauti/sign-and-publish-on-maven-central-a-project-with-the-new-maven-publish-gradle-plugin-22a72a4bfd4b (Part 2)
+
+
+### Post work after release is done
+
+As last step, update the project download page to refer to latest release as well.
+Goto https://projects.eclipse.org/projects/iot.concierge and edit download section.
+
+When release build has been done, tag the commit to `v5.1.0`.
diff --git a/docs/concierge-bndtools.markdown b/docs/concierge-bndtools.md
similarity index 100%
rename from docs/concierge-bndtools.markdown
rename to docs/concierge-bndtools.md
diff --git a/docs/concierge-bundles.markdown b/docs/concierge-bundles.md
similarity index 70%
rename from docs/concierge-bundles.markdown
rename to docs/concierge-bundles.md
index 0d580f3..6988524 100644
--- a/docs/concierge-bundles.markdown
+++ b/docs/concierge-bundles.md
@@ -8,7 +8,8 @@
 
 ### org.eclipse.concierge.extension.permission
 
-Provides the `org.osgi.service.condpermadmin` and `org.osgi.service.permissionadmin` interfaces
+Provides the `org.osgi.service.condpermadmin` and `org.osgi.service.permissionadmin` interfaces as framework extension
+Note: there is also a bundle org.eclipse.concierge.service.permission which contains same classes but not as framework extension but as separate bundle.
 
 ### org.eclipse.concierge.service.packageadmin
 
@@ -22,3 +23,6 @@
 
 Allows any JAXP compliant XML Parser to register itself as an OSGi parser service.
 
+### org.eclipse.concierge.service.eventadmin
+
+Provides a very lightweight implementation of EventAdmin (just 3 clasees).
diff --git a/docs/concierge-commandline.markdown b/docs/concierge-commandline.md
similarity index 62%
rename from docs/concierge-commandline.markdown
rename to docs/concierge-commandline.md
index 5915d3a..ee17982 100644
--- a/docs/concierge-commandline.markdown
+++ b/docs/concierge-commandline.md
@@ -37,30 +37,43 @@
 ### Sample .xargs files
 
 The Concierge distribution download comes with sample .xargs files. For example, the following
-.xargs file launches Concierge with some basic Apache Felix bundles providing declarative services,
-an event admin, configuration admin and metatype:
+.xargs file launches Concierge with some basic Apache Felix bundles providing declarative services, an event admin, configuration admin and metatype:
 
 ```
- # xargs sample file to load some Felix bundles
+# xargs sample file to load some Felix bundles
+# We will start the bundles in different start levels to show that capability
 
- # uncomment to clean storage first
- # -Dorg.osgi.framework.storage.clean=onFirstInit
+# uncomment to clean storage first
+# -Dorg.osgi.framework.storage.clean=onFirstInit
 
- # use our own profile
- -Dorg.eclipse.concierge.profile=felix
+# use a separate profile
+-Dorg.eclipse.concierge.profile=felix
 
- # repos to load bundles from
- -Drepo=http://www.us.apache.org/dist/felix
+# repos to load bundles from
+-Drepo=https://archive.apache.org/dist/felix
 
- # load bundles
- -istart bundles/org.eclipse.concierge.shell-0.9.0.*.jar
- -istart ${repo}/org.apache.felix.log-1.0.1.jar
- -istart ${repo}/org.apache.felix.scr-1.8.0.jar
- -istart ${repo}/org.apache.felix.eventadmin-1.4.2.jar
- -istart ${repo}/org.apache.felix.metatype-1.0.12.jar
- -istart ${repo}/org.apache.felix.configadmin-1.8.4.jar
+# load shell and logservice with start level 1
+-initlevel 1
+-istart bundles/org.eclipse.concierge.shell-5.0.0.*.jar
+-istart ${repo}/org.apache.felix.log-1.0.1.jar
+
+# start DS with start level 2
+-initlevel 2
+-istart ${repo}/org.apache.felix.scr-1.8.0.jar
+
+# start other services with level 3
+# First install (will use current start level 2), then start with level 3
+-install ${repo}/org.apache.felix.eventadmin-1.4.2.jar
+-install ${repo}/org.apache.felix.metatype-1.0.12.jar
+-install ${repo}/org.apache.felix.configadmin-1.8.4.jar
+
+-initlevel 3
+-start ${repo}/org.apache.felix.eventadmin-1.4.2.jar
+-start ${repo}/org.apache.felix.metatype-1.0.12.jar
+-start ${repo}/org.apache.felix.configadmin-1.8.4.jar
+
+# check different start levels in shell with command "startlevel <bundle-id>"
 ```
-
 First, some properties are set using the `-Dkey=value` syntax, and next the bundles to 
 start are declared.
 
@@ -72,11 +85,8 @@
 The `org.eclipse.concierge.profile` allows you to create a separate storage directory
 for each profile.
 
-The `repo` property is declared pointing to the Apache Felix repository, and is used later
-in the commands as `${repo}`.
+The `repo` property is declared pointing to the Apache Felix repository, and is used later in the commands as `${repo}`.
 
-Finally all bundles are installed and started with the `-istart` command. This can take 
-both a web URL or a file system URL.
+Finally all bundles are installed and started with the `-istart` command or using `-install` and `-start` command. This can take both a web URL or a file system URL.
 
-
-
+If you specify a `-initlevel <level>` all bundles installed or started later will start with the given start level.
diff --git a/docs/concierge-embedding.markdown b/docs/concierge-embedding.md
similarity index 98%
rename from docs/concierge-embedding.markdown
rename to docs/concierge-embedding.md
index ecfd133..a16c30e 100644
--- a/docs/concierge-embedding.markdown
+++ b/docs/concierge-embedding.md
@@ -26,7 +26,7 @@
 
 ```
 BundleContext context = concierge.getBundleContext();
-Bundle shell = context.installBundle("file:org.eclipse.concierge.shell-0.9.0.jar"));
+Bundle shell = context.installBundle("file:org.eclipse.concierge.shell-5.0.0.jar"));
 shell.start();
 ```
 
diff --git a/docs/contributor/build-concierge.markdown b/docs/contributor/build-concierge.md
similarity index 86%
rename from docs/contributor/build-concierge.markdown
rename to docs/contributor/build-concierge.md
index 12c9598..87e13f9 100644
--- a/docs/contributor/build-concierge.markdown
+++ b/docs/contributor/build-concierge.md
@@ -3,9 +3,9 @@
 Concierge will be build using [Gradle](http://gradle.org/). The gradle wrapper scripts will be used, to simplify installation. The wrapper scripts are checked in into repository as `./gradlew` and `./gradlew.bat`. The required files to start and download gradle are in folder `.gradle-wrapper`, do not touch. 
 
 ```gradle
-// task to create a gradle wrapper with used gradle version
-task wrapper(type: Wrapper) {
-    gradleVersion = '2.2.1'
+// use wrapper task since Gradle 4.8
+wrapper {
+    gradleVersion = '4.10.2'
     jarFile = '.gradle-wrapper/gradle-wrapper.jar'
 }
 ```
@@ -28,9 +28,9 @@
 
 ## Versioning
 
-The framework and the bundles jars will be named to Bundle-SymbolicName and Bundle-Version, e.g. `org.eclipse.concierge-0.9.0.20141230122000.jar`. The Manifest.MF will specify the `Bundle-Version: 0.9.0.qualifier`, qualifier will be replaced by the current build date/time (MANIFEST driven approach). The version maintenance is up to the individual bundles/framework dependent on compatibility of changes.
+The framework and the bundles jars will be named to Bundle-SymbolicName and Bundle-Version, e.g. `org.eclipse.concierge-5.1.0.SNAPSHOT-20151114134106.jar`. The Manifest.MF will specify the `Bundle-Version: 5.1.0.qualifier`, qualifier will be replaced by the current build date/time (MANIFEST driven approach). The version maintenance is up to the individual bundles/framework dependent on compatibility of changes.
 
-The version for the distribution will be defined in `version.txt` in root directory. The used release plugin will automatically read in this file and use it as `project.version` property. When this file will have a `-SNAPSHOT` ending, it will be considered as a SNAPSHOT version. When doing a release (by calling `./gradlew release`) it will remove SNAPSHOT, make a release build, create a tag in git, and increase the version to next number.
+The version for the distribution will be defined in `version.txt` in root directory. The used release plugin will automatically read in this file and use it as `project.version` property. When this file will have a `.SNAPSHOT` ending, it will be considered as a SNAPSHOT version. When doing a release (by calling `./gradlew release`) it will remove SNAPSHOT, make a release build, create a tag in git, and increase the version to next number.
 
 ## Distribution files
 
diff --git a/docs/contributor/contribute.markdown b/docs/contributor/contribute.md
similarity index 99%
rename from docs/contributor/contribute.markdown
rename to docs/contributor/contribute.md
index aea834b..e7036c8 100644
--- a/docs/contributor/contribute.markdown
+++ b/docs/contributor/contribute.md
@@ -19,4 +19,3 @@
 Vulnerabilities can be reported either via email to the Eclipse Security Team or directly with a project via the Eclipse Foundation's Bugzilla instance. For more information, please click [here](https://www.eclipse.org/security/). 
 
 
-
diff --git a/docs/getting-started.markdown b/docs/getting-started.md
similarity index 100%
rename from docs/getting-started.markdown
rename to docs/getting-started.md
diff --git a/docs/index.markdown b/docs/index.md
similarity index 93%
rename from docs/index.markdown
rename to docs/index.md
index 6ea7c00..443d596 100644
--- a/docs/index.markdown
+++ b/docs/index.md
@@ -3,7 +3,6 @@
 Concierge is a small-footprint implementation of the OSGi Core Specification R5 standard 
 optimized for mobile and embedded devices.
 
-
 ## User documentation
 
 * [Getting started](getting-started.html)
@@ -13,10 +12,9 @@
 * [OSGi Options supported by Concierge](options-osgi.html)
 * [Concierge Options](options-concierge.html)
 * [Concierge AddOn bundles](concierge-bundles.html)
+* [Concierge Release Notes](release-notes.html)
 
 ## Developer documentation
 
 * [Building Concierge from source](contributor/build-concierge.html)
 * [How to contribute](contributor/contribute.html)
-
-
diff --git a/docs/options-concierge.markdown b/docs/options-concierge.md
similarity index 100%
rename from docs/options-concierge.markdown
rename to docs/options-concierge.md
diff --git a/docs/options-osgi.markdown b/docs/options-osgi.md
similarity index 74%
rename from docs/options-osgi.markdown
rename to docs/options-osgi.md
index 4c2bc97..65ad91d 100644
--- a/docs/options-osgi.markdown
+++ b/docs/options-osgi.md
@@ -4,9 +4,9 @@
 
 ### System Packages Extra
 
-The `osgi.framework.system.packages.extra` property identifies extra packages which the system bundle must export. 
+The `org.osgi.framework.system.packages.extra` property identifies extra packages which the system bundle must export. 
 
-These packages will be added to the packages listed by the `osgi.framework.system.packages` property, which contains the main OSGi framework packages. Do not change the `osgi.framework.system.packages` property unless you know what you are doing. The default `osgi.framework.system.packages` provided by Concierge contains the following packages:
+These packages will be added to the packages listed by the `org.osgi.framework.system.packages` property, which contains the main OSGi framework packages. Do not change the `org.osgi.framework.system.packages` property unless you know what you are doing. The default `org.osgi.framework.system.packages` provided by Concierge contains the following packages:
 ```
 org.osgi.framework,
 org.osgi.framework.hooks.bundle,
@@ -28,7 +28,7 @@
 
 ### OSGi Bootdelegation
 
-The `org.osgi.framework.bootdelegation` launching property identifies packages for which the Framework must delegate class loading to the parent class loader of the bundle. This must be used for packages that are required by a bundle, although not stated as an Import-Package. By default Concierge only delegates `java.*` packages to the parent class loader. If you use `javax.*` and/or `sun.*` packages you should explicitly set the `org.osgi.framework.bootdelegation` property to `javax.*,sun.*`. If you need to add other packages as well, double check whether you shouldn't have to add the package as an Import-Package of your bundle and use `osgi.framework.system.packages.extra` to have this package exported by the Framework.
+The `org.osgi.framework.bootdelegation` launching property identifies packages for which the Framework must delegate class loading to the parent class loader of the bundle. This must be used for packages that are required by a bundle, although not stated as an Import-Package. By default Concierge only delegates `java.*` packages to the parent class loader. If you use `javax.*` and/or `sun.*` packages you should explicitly set the `org.osgi.framework.bootdelegation` property to `javax.*,sun.*`. If you need to add other packages as well, double check whether you shouldn't have to add the package as an Import-Package of your bundle and use `org.osgi.framework.system.packages.extra` to have this package exported by the Framework.
 
 
 ### Framework Parent ClassLoader
diff --git a/docs/release-notes.md b/docs/release-notes.md
new file mode 100644
index 0000000..5b4c5b7
--- /dev/null
+++ b/docs/release-notes.md
@@ -0,0 +1,23 @@
+# Eclipse Concierge Release Notes
+
+## Release 5.1.0 (2018-11-13)
+
+This release ships the reference implementations for two OSGi standards: 
+* OSGi R6 Compendium / Enterprise REST Management Service Specification Version 1.0
+* OSGi R7 Compendium / Enterprise Cluster Information Specification Version 1.0
+
+Further improvements:
+* Binaries are available (for the first time) on Maven Central https://search.maven.org/search?q=g:org.eclipse.concierge
+* Added simple EventAdmin 1.3 implementation
+
+Bugs fixed:
+* [#45](https://github.com/eclipse/concierge/issues/45) Native library support fails in some OSGi TCK Tests
+* [#39](https://github.com/eclipse/concierge/issues/39) Running Concierge on CEE-J throws a NPE in this.getClass().getClassLoader().loadCLass()
+* [#37](https://github.com/eclipse/concierge/issues/37) Running Concierge on CEE-J results on NPE
+* [#28](https://github.com/eclipse/concierge/issues/28) installBundle with null InputStream fails
+* [#9](https://github.com/eclipse/concierge/issues/9) removeBundleListener() does not work on framework bundle
+
+## Release 5.0.0 (2015-10-29)
+
+* Initial release (incubation)
+* See https://bugs.eclipse.org/bugs/show_bug.cgi?id=479458
diff --git a/documentation.php b/documentation.php
index b2c9fc9..30b6572 100644
--- a/documentation.php
+++ b/documentation.php
@@ -54,17 +54,18 @@
     });
   }
 
-  showMarkdown('docs/getting-started.markdown', 'gs');
-  showMarkdown('docs/concierge-commandline.markdown', 'cli');
-  showMarkdown('docs/concierge-bndtools.markdown', 'bnd');
-  showMarkdown('docs/concierge-embedding.markdown', 'embedding');
+  showMarkdown('docs/getting-started.md', 'gs');
+  showMarkdown('docs/concierge-commandline.md', 'cli');
+  showMarkdown('docs/concierge-bndtools.md', 'bnd');
+  showMarkdown('docs/concierge-embedding.md', 'embedding');
 	    
-  showMarkdown('docs/options-concierge.markdown', 'options-concierge');
-  showMarkdown('docs/options-osgi.markdown', 'options-osgi');
-  showMarkdown('docs/concierge-bundles.markdown', 'bundles');
+  showMarkdown('docs/options-concierge.md', 'options-concierge');
+  showMarkdown('docs/options-osgi.md', 'options-osgi');
+  showMarkdown('docs/concierge-bundles.md', 'bundles');
+  showMarkdown('docs/release-notes.md', 'release-notes');
 
-  showMarkdown('docs/contributor/build-concierge.markdown', 'build');
-  showMarkdown('docs/contributor/contribute.markdown', 'contribute');
+  showMarkdown('docs/contributor/build-concierge.md', 'build');
+  showMarkdown('docs/contributor/contribute.md', 'contribute');
 </script>
 
 <?php include('includes/footer.php') ?>
diff --git a/index.php b/index.php
index 39fd03b..1ddae72 100644
--- a/index.php
+++ b/index.php
@@ -53,4 +53,3 @@
   </div>
 </div>
 <?php include('includes/footer.php') ?>
-<!-- updated at 2018-1-17 -->
diff --git a/repository/concierge-repo.bnd b/repository/concierge-repo.bnd
deleted file mode 100644
index 7b7c41d..0000000
--- a/repository/concierge-repo.bnd
+++ /dev/null
@@ -1,143 +0,0 @@
-#
-# -CONCIERGE-
-# 
-# This file contains the setup for the Concierge repository
-#
-
--plugin.concierge.repo= \
-	aQute.bnd.deployer.repository.FixedIndexedRepo; \
-		name=Concierge; \
-		locations=https://www.eclipse.org/concierge/repository/index.xml;
-	
-#
-# run system packages for the Java 1.8 compact profiles
-#
-# remove compact3 or compact2 if you want a lower profile
-#
-
-# compact1 profile packages
--runsystempackages.compact1: \
-	javax.crypto.interfaces,\
- 	javax.crypto.spec,\
- 	javax.net,\
- 	javax.net.ssl,\
- 	javax.script,\
- 	javax.security.auth,\
- 	javax.security.auth.callback,\
- 	javax.security.auth.login,\
- 	javax.security.auth.spi,\
- 	javax.security.auth.x500,\
- 	javax.security.cert
-
-# compact2 profile packages
--runsystempackages.compact2: \
-	javax.crypto.interfaces,\
- 	javax.crypto.spec,\
- 	javax.net,\
- 	javax.net.ssl,\
- 	javax.rmi.ssl,\
- 	javax.script,\
- 	javax.security.auth,\
- 	javax.security.auth.callback,\
- 	javax.security.auth.login,\
- 	javax.security.auth.spi,\
- 	javax.security.auth.x500,\
- 	javax.security.cert,\
- 	javax.sql,\
- 	javax.transaction,\
- 	javax.transaction.xa,\
- 	javax.xml,\
- 	javax.xml.datatype,\
- 	javax.xml.namespace,\
- 	javax.xml.parsers,\
- 	javax.xml.stream,\
- 	javax.xml.stream.events,\
- 	javax.xml.stream.util,\
- 	javax.xml.transform,\
- 	javax.xml.transform.dom,\
- 	javax.xml.transform.sax,\
- 	javax.xml.transform.stax,\
- 	javax.xml.transform.stream,\
- 	javax.xml.validation,\
- 	javax.xml.xpath,\
- 	org.w3c.dom,\
- 	org.w3c.dom.bootstrap,\
- 	org.w3c.dom.events,\
- 	org.w3c.dom.ls,\
- 	org.xml.sax,\
- 	org.xml.sax.ext,\
- 	org.xml.sax.helpers
-
-# compact3 profile packages
--runsystempackages.compact3: \
- 	javax.annotation.processing,\
- 	javax.crypto.interfaces,\
- 	javax.crypto.spec,\
- 	javax.lang.model,\
- 	javax.lang.model.element,\
- 	javax.lang.model.type,\
- 	javax.lang.model.util,\
- 	javax.management,\
- 	javax.management.loading,\
- 	javax.management.modelmbean,\
- 	javax.management.monitor,\
- 	javax.management.openmbean,\
- 	javax.management.relation,\
- 	javax.management.remote,\
- 	javax.management.remote.rmi,\
- 	javax.management.timer,\
- 	javax.naming,\
- 	javax.naming.directory,\
- 	javax.naming.event,\
- 	javax.naming.ldap,\
- 	javax.naming.spi,\
- 	javax.net,\
- 	javax.net.ssl,\
- 	javax.rmi.ssl,\
- 	javax.script,\
- 	javax.security.auth,\
- 	javax.security.auth.kerberos,\
- 	javax.security.auth.callback,\
- 	javax.security.auth.login,\
- 	javax.security.auth.spi,\
- 	javax.security.auth.x500,\
- 	javax.security.cert,\
- 	javax.security.sasl,\
- 	javax.sql,\
- 	javax.sql.rowset,\
- 	javax.sql.rowset.serial,\
- 	javax.sql.rowset.spi,\
- 	javax.tools,\
- 	javax.transaction,\
- 	javax.transaction.xa,\
- 	javax.xml,\
- 	javax.xml.crypto,\
- 	javax.xml.crypto.dom,\
- 	javax.xml.crypto.dsig,\
- 	javax.xml.crypto.dsig.dom,\
- 	javax.xml.crypto.dsig.keyinfo,\
- 	javax.xml.crypto.dsig.spec,\
- 	javax.xml.datatype,\
- 	javax.xml.namespace,\
- 	javax.xml.parsers,\
- 	javax.xml.stream,\
- 	javax.xml.stream.events,\
- 	javax.xml.stream.util,\
- 	javax.xml.transform,\
-	javax.xml.transform.dom,\
-	javax.xml.transform.sax,\
-	javax.xml.transform.stax,\
-	javax.xml.transform.stream,\
- 	javax.xml.validation,\
- 	javax.xml.xpath,\
- 	org.ieft.jgss,\
- 	org.w3c.dom,\
- 	org.w3c.dom.bootstrap,\
- 	org.w3c.dom.events,\
- 	org.w3c.dom.ls,\
- 	org.xml.sax,\
- 	org.xml.sax.ext,\
- 	org.xml.sax.helpers
-
--runproperties.concierge: \
-	org.osgi.framework.bootdelegation="sun.*"
diff --git a/repository/index.xml b/repository/index.xml
deleted file mode 100644
index 93ff290..0000000
--- a/repository/index.xml
+++ /dev/null
@@ -1,758 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<repository increment='1477128529486' name='org.eclipse.concierge' xmlns='http://www.osgi.org/xmlns/repository/v1.0.0'>
-  <resource>
-    <capability namespace='osgi.identity'>
-      <attribute name='osgi.identity' value='org.eclipse.concierge.extension.permission'/>
-      <attribute name='type' value='osgi.fragment'/>
-      <attribute name='version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.content'>
-      <attribute name='osgi.content' value='e3454b624b1605c59b6f7d56db6fa129a29b31cd6af12b1ff702bfa07dfc8778'/>
-      <attribute name='url' value='org.eclipse.concierge.extension.permission/org.eclipse.concierge.extension.permission-5.0.0.jar'/>
-      <attribute name='size' type='Long' value='19409'/>
-      <attribute name='mime' value='application/vnd.osgi.bundle'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.condpermadmin'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge.extension.permission'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.permissionadmin'/>
-      <attribute name='version' type='Version' value='1.2.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge.extension.permission'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <requirement namespace='osgi.wiring.host'>
-      <directive name='filter' value='(&amp;(osgi.wiring.host=system.bundle)(bundle-version&gt;=0.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.ee'>
-      <directive name='filter' value='(&amp;(osgi.ee=JavaSE)(version=1.5))'/>
-    </requirement>
-  </resource>
-  <resource>
-    <capability namespace='osgi.identity'>
-      <attribute name='osgi.identity' value='org.eclipse.concierge'/>
-      <attribute name='type' value='osgi.bundle'/>
-      <attribute name='version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.content'>
-      <attribute name='osgi.content' value='989a30f401409ed3ee7f7e5897ba87fc8565162cc74005bcc92c2f47fa2e9f0c'/>
-      <attribute name='url' value='org.eclipse.concierge/org.eclipse.concierge-5.0.0.jar'/>
-      <attribute name='size' type='Long' value='253871'/>
-      <attribute name='mime' value='application/vnd.osgi.bundle'/>
-    </capability>
-    <capability namespace='osgi.wiring.bundle'>
-      <attribute name='osgi.wiring.bundle' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.host'>
-      <attribute name='osgi.wiring.host' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework'/>
-      <attribute name='version' type='Version' value='1.7.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.hooks.bundle'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.hooks.resolver'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.hooks.service'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.hooks.weaving'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.launch'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.namespace'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.startlevel'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.wiring'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.resource'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.log'/>
-      <attribute name='version' type='Version' value='1.3.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.packageadmin'/>
-      <attribute name='version' type='Version' value='1.2.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.resolver'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.startlevel'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.url'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.util.tracker'/>
-      <attribute name='version' type='Version' value='1.5.1'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.contract'>
-      <attribute name='osgi.contract' value='OSGiFramework'/>
-      <attribute name='version' type='Version' value='5.0.0'/>
-      <directive name='uses' value='org.osgi.framework,org.osgi.framework.hooks.bundle,org.osgi.framework.hooks.resolver,org.osgi.framework.hooks.service,org.osgi.framework.hooks.weaving,org.osgi.framework.launch,org.osgi.framework.namespace,org.osgi.framework.startlevel,org.osgi.framework.wiring,org.osgi.resource,org.osgi.service.log,org.osgi.service.packageadmin,org.osgi.service.resolver,org.osgi.service.startlevel,org.osgi.service.url,org.osgi.util.tracker'/>
-    </capability>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework)(version&gt;=1.7.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.hooks.bundle)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.hooks.resolver)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.hooks.service)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.hooks.weaving)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.launch)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.namespace)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.startlevel)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.wiring)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.resource)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.log)(version&gt;=1.3.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.packageadmin)(version&gt;=1.2.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.resolver)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.startlevel)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.url)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.util.tracker)(version&gt;=1.5.1))'/>
-    </requirement>
-    <requirement namespace='osgi.ee'>
-      <directive name='filter' value='(&amp;(osgi.ee=JavaSE)(version=1.5))'/>
-    </requirement>
-  </resource>
-  <resource>
-    <capability namespace='osgi.identity'>
-      <attribute name='osgi.identity' value='org.eclipse.concierge'/>
-      <attribute name='type' value='osgi.bundle'/>
-      <attribute name='version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.content'>
-      <attribute name='osgi.content' value='8fbf05daf599f3f2d0ddab0eef8a79cb39e91ee210193749365af91c3e05f4e9'/>
-      <attribute name='url' value='org.eclipse.concierge/org.eclipse.concierge-6.0.0.jar'/>
-      <attribute name='size' type='Long' value='375486'/>
-      <attribute name='mime' value='application/vnd.osgi.bundle'/>
-    </capability>
-    <capability namespace='osgi.wiring.bundle'>
-      <attribute name='osgi.wiring.bundle' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.host'>
-      <attribute name='osgi.wiring.host' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.dto'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework'/>
-      <attribute name='version' type='Version' value='1.8.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.dto'/>
-      <attribute name='version' type='Version' value='1.8.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.hooks.bundle'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.hooks.resolver'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.hooks.service'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.hooks.weaving'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.launch'/>
-      <attribute name='version' type='Version' value='1.2.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.namespace'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.startlevel'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.startlevel.dto'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.wiring'/>
-      <attribute name='version' type='Version' value='1.2.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.framework.wiring.dto'/>
-      <attribute name='version' type='Version' value='1.2.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.resource'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.resource.dto'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.log'/>
-      <attribute name='version' type='Version' value='1.3.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.packageadmin'/>
-      <attribute name='version' type='Version' value='1.2.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.startlevel'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.url'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.resolver'/>
-      <attribute name='version' type='Version' value='1.0.1'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.util.tracker'/>
-      <attribute name='version' type='Version' value='1.5.1'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge'/>
-      <attribute name='bundle-version' type='Version' value='6.0.0.SNAPSHOT'/>
-    </capability>
-    <capability namespace='osgi.contract'>
-      <attribute name='osgi.contract' value='OSGiFramework'/>
-      <directive name='uses' value='org.osgi.dto,org.osgi.framework,org.osgi.framework.dto,org.osgi.framework.hooks.bundle,org.osgi.framework.hooks.resolver,org.osgi.framework.hooks.service,org.osgi.framework.hooks.weaving,org.osgi.framework.launch,org.osgi.framework.namespace,org.osgi.framework.startlevel,org.osgi.framework.startlevel.dto,org.osgi.framework.wiring,org.osgi.framework.wiring.dto,org.osgi.resource,org.osgi.resource.dto,org.osgi.service.log,org.osgi.service.packageadmin,org.osgi.service.startlevel,org.osgi.service.url,org.osgi.service.resolver,org.osgi.util.tracker'/>
-    </capability>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.dto)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework)(version&gt;=1.8.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.dto)(version&gt;=1.8.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.hooks.bundle)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.hooks.resolver)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.hooks.service)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.hooks.weaving)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.launch)(version&gt;=1.2.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.namespace)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.startlevel)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.startlevel.dto)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.wiring)(version&gt;=1.2.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.wiring.dto)(version&gt;=1.2.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.resource)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.resource.dto)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.log)(version&gt;=1.3.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.packageadmin)(version&gt;=1.2.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.startlevel)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.url)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.resolver)(version&gt;=1.0.1))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.util.tracker)(version&gt;=1.5.1))'/>
-    </requirement>
-    <requirement namespace='osgi.ee'>
-      <directive name='filter' value='(&amp;(osgi.ee=JavaSE)(version=1.5))'/>
-    </requirement>
-  </resource>
-  <resource>
-    <capability namespace='osgi.identity'>
-      <attribute name='osgi.identity' value='org.eclipse.concierge.service.packageadmin'/>
-      <attribute name='type' value='osgi.bundle'/>
-      <attribute name='version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.content'>
-      <attribute name='osgi.content' value='e7a879f77c921c0ca3df1a70d848bf10c6232e4c9fc730c675891bb5f5d5165d'/>
-      <attribute name='url' value='org.eclipse.concierge.service.packageadmin/org.eclipse.concierge.service.packageadmin-5.0.0.jar'/>
-      <attribute name='size' type='Long' value='19753'/>
-      <attribute name='mime' value='application/vnd.osgi.bundle'/>
-    </capability>
-    <capability namespace='osgi.wiring.bundle'>
-      <attribute name='osgi.wiring.bundle' value='org.eclipse.concierge.service.packageadmin'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.host'>
-      <attribute name='osgi.wiring.host' value='org.eclipse.concierge.service.packageadmin'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.packageadmin'/>
-      <attribute name='version' type='Version' value='1.2.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge.service.packageadmin'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework)(version&gt;=1.3.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.namespace)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.wiring)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.resource)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.packageadmin)(version&gt;=1.2.0)(!(version&gt;=2.0.0)))'/>
-    </requirement>
-    <requirement namespace='osgi.ee'>
-      <directive name='filter' value='(&amp;(osgi.ee=JavaSE)(version=1.5))'/>
-    </requirement>
-  </resource>
-  <resource>
-    <capability namespace='osgi.identity'>
-      <attribute name='osgi.identity' value='org.eclipse.concierge.service.permission'/>
-      <attribute name='type' value='osgi.bundle'/>
-      <attribute name='version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.content'>
-      <attribute name='osgi.content' value='33d11d2a40e9ef006d8a86c4ed20e66a27e79765592c38f0cb175b22ed2cbc75'/>
-      <attribute name='url' value='org.eclipse.concierge.service.permission/org.eclipse.concierge.service.permission-5.0.0.jar'/>
-      <attribute name='size' type='Long' value='19380'/>
-      <attribute name='mime' value='application/vnd.osgi.bundle'/>
-    </capability>
-    <capability namespace='osgi.wiring.bundle'>
-      <attribute name='osgi.wiring.bundle' value='org.eclipse.concierge.service.permission'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.host'>
-      <attribute name='osgi.wiring.host' value='org.eclipse.concierge.service.permission'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.condpermadmin'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge.service.permission'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.permissionadmin'/>
-      <attribute name='version' type='Version' value='1.2.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge.service.permission'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.osgi.framework)'/>
-    </requirement>
-    <requirement namespace='osgi.ee'>
-      <directive name='filter' value='(&amp;(osgi.ee=JavaSE)(version=1.5))'/>
-    </requirement>
-  </resource>
-  <resource>
-    <capability namespace='osgi.identity'>
-      <attribute name='osgi.identity' value='org.eclipse.concierge.service.startlevel'/>
-      <attribute name='type' value='osgi.bundle'/>
-      <attribute name='version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.content'>
-      <attribute name='osgi.content' value='e8be37a5cbc8fc645af2452552c1a92c39ef5e0de726daedec17f981dbd0c04c'/>
-      <attribute name='url' value='org.eclipse.concierge.service.startlevel/org.eclipse.concierge.service.startlevel-5.0.0.jar'/>
-      <attribute name='size' type='Long' value='9657'/>
-      <attribute name='mime' value='application/vnd.osgi.bundle'/>
-    </capability>
-    <capability namespace='osgi.wiring.bundle'>
-      <attribute name='osgi.wiring.bundle' value='org.eclipse.concierge.service.startlevel'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.host'>
-      <attribute name='osgi.wiring.host' value='org.eclipse.concierge.service.startlevel'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.osgi.service.startlevel'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge.service.startlevel'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework)(version&gt;=1.3.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.startlevel)(version&gt;=1.0.0)(!(version&gt;=2.0.0)))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.startlevel)(version&gt;=1.1.0)(!(version&gt;=2.0.0)))'/>
-    </requirement>
-    <requirement namespace='osgi.ee'>
-      <directive name='filter' value='(&amp;(osgi.ee=JavaSE)(version=1.5))'/>
-    </requirement>
-  </resource>
-  <resource>
-    <capability namespace='osgi.identity'>
-      <attribute name='osgi.identity' value='org.eclipse.concierge.service.xmlparser'/>
-      <attribute name='type' value='osgi.bundle'/>
-      <attribute name='version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.content'>
-      <attribute name='osgi.content' value='37fdba1a37ac356ebc9653308c75d1bded9090fc0a571bf4f3a201451381e8a6'/>
-      <attribute name='url' value='org.eclipse.concierge.service.xmlparser/org.eclipse.concierge.service.xmlparser-5.0.0.jar'/>
-      <attribute name='size' type='Long' value='12002'/>
-      <attribute name='mime' value='application/vnd.osgi.bundle'/>
-    </capability>
-    <capability namespace='osgi.wiring.bundle'>
-      <attribute name='osgi.wiring.bundle' value='org.eclipse.concierge.service.xmlparser'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.host'>
-      <attribute name='osgi.wiring.host' value='org.eclipse.concierge.service.xmlparser'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=javax.xml.parsers)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework)(version&gt;=1.7.0))'/>
-    </requirement>
-    <requirement namespace='osgi.ee'>
-      <directive name='filter' value='(&amp;(osgi.ee=JavaSE)(version=1.5))'/>
-    </requirement>
-  </resource>
-  <resource>
-    <capability namespace='osgi.identity'>
-      <attribute name='osgi.identity' value='org.eclipse.concierge.shell'/>
-      <attribute name='type' value='osgi.bundle'/>
-      <attribute name='version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.content'>
-      <attribute name='osgi.content' value='46cc7a7b98e1cdc099b4eed3905d3662661e65cc24c0703e7cc263bde4223424'/>
-      <attribute name='url' value='org.eclipse.concierge.shell/org.eclipse.concierge.shell-5.0.0.jar'/>
-      <attribute name='size' type='Long' value='19253'/>
-      <attribute name='mime' value='application/vnd.osgi.bundle'/>
-    </capability>
-    <capability namespace='osgi.wiring.bundle'>
-      <attribute name='osgi.wiring.bundle' value='org.eclipse.concierge.shell'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.host'>
-      <attribute name='osgi.wiring.host' value='org.eclipse.concierge.shell'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.concierge.shell.commands'/>
-      <attribute name='version' type='Version' value='0.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.concierge.shell'/>
-      <attribute name='bundle-version' type='Version' value='5.0.0.20151029184259'/>
-    </capability>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework)(version&gt;=1.3.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.namespace)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.startlevel)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.framework.wiring)(version&gt;=1.1.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.resource)(version&gt;=1.0.0))'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(&amp;(osgi.wiring.package=org.osgi.service.packageadmin)(version&gt;=1.2.0))'/>
-      <directive name='resolution' value='optional'/>
-    </requirement>
-    <requirement namespace='osgi.ee'>
-      <directive name='filter' value='(&amp;(osgi.ee=JavaSE)(version=1.5))'/>
-    </requirement>
-  </resource>
-  <resource>
-    <capability namespace='osgi.identity'>
-      <attribute name='osgi.identity' value='org.eclipse.equinox.supplement'/>
-      <attribute name='type' value='osgi.bundle'/>
-      <attribute name='version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.content'>
-      <attribute name='osgi.content' value='f12eae832d8762c8e3ded7fbf44f3c5927b91c862bb924db1a3ad672eabd3ece'/>
-      <attribute name='url' value='org.eclipse.equinox.supplement/org.eclipse.equinox.supplement-1.5.100.jar'/>
-      <attribute name='size' type='Long' value='99730'/>
-      <attribute name='mime' value='application/vnd.osgi.bundle'/>
-    </capability>
-    <capability namespace='osgi.wiring.bundle'>
-      <attribute name='osgi.wiring.bundle' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.host'>
-      <attribute name='osgi.wiring.host' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.equinox.log'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.osgi.framework.eventmgr'/>
-      <attribute name='version' type='Version' value='1.2.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.osgi.framework.log'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.osgi.service.datalocation'/>
-      <attribute name='version' type='Version' value='1.3.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.osgi.service.debug'/>
-      <attribute name='version' type='Version' value='1.2.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.osgi.service.environment'/>
-      <attribute name='version' type='Version' value='1.3.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.osgi.service.localization'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.osgi.service.runnable'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.osgi.service.urlconversion'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.osgi.storagemanager'/>
-      <attribute name='version' type='Version' value='1.0.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <capability namespace='osgi.wiring.package'>
-      <attribute name='osgi.wiring.package' value='org.eclipse.osgi.util'/>
-      <attribute name='version' type='Version' value='1.1.0'/>
-      <attribute name='bundle-symbolic-name' value='org.eclipse.equinox.supplement'/>
-      <attribute name='bundle-version' type='Version' value='1.5.100.v20140428-1446'/>
-    </capability>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.osgi.framework)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.osgi.service.log)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.osgi.util.tracker)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.eclipse.equinox.log)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.eclipse.osgi.framework.eventmgr)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.eclipse.osgi.framework.log)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.eclipse.osgi.service.datalocation)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.eclipse.osgi.service.debug)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.eclipse.osgi.service.environment)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.eclipse.osgi.service.localization)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.eclipse.osgi.service.runnable)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.eclipse.osgi.service.urlconversion)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.eclipse.osgi.storagemanager)'/>
-    </requirement>
-    <requirement namespace='osgi.wiring.package'>
-      <directive name='filter' value='(osgi.wiring.package=org.eclipse.osgi.util)'/>
-    </requirement>
-    <requirement namespace='osgi.ee'>
-      <directive name='filter' value='(&amp;(osgi.ee=JavaSE)(version=1.6))'/>
-    </requirement>
-  </resource>
-</repository>
\ No newline at end of file
diff --git a/repository/org.eclipse.concierge.extension.permission/org.eclipse.concierge.extension.permission-5.0.0.jar b/repository/org.eclipse.concierge.extension.permission/org.eclipse.concierge.extension.permission-5.0.0.jar
deleted file mode 100644
index 0d5edd8..0000000
--- a/repository/org.eclipse.concierge.extension.permission/org.eclipse.concierge.extension.permission-5.0.0.jar
+++ /dev/null
Binary files differ
diff --git a/repository/org.eclipse.concierge.service.packageadmin/org.eclipse.concierge.service.packageadmin-5.0.0.jar b/repository/org.eclipse.concierge.service.packageadmin/org.eclipse.concierge.service.packageadmin-5.0.0.jar
deleted file mode 100644
index bdd77c7..0000000
--- a/repository/org.eclipse.concierge.service.packageadmin/org.eclipse.concierge.service.packageadmin-5.0.0.jar
+++ /dev/null
Binary files differ
diff --git a/repository/org.eclipse.concierge.service.permission/org.eclipse.concierge.service.permission-5.0.0.jar b/repository/org.eclipse.concierge.service.permission/org.eclipse.concierge.service.permission-5.0.0.jar
deleted file mode 100644
index 71e0384..0000000
--- a/repository/org.eclipse.concierge.service.permission/org.eclipse.concierge.service.permission-5.0.0.jar
+++ /dev/null
Binary files differ
diff --git a/repository/org.eclipse.concierge.service.startlevel/org.eclipse.concierge.service.startlevel-5.0.0.jar b/repository/org.eclipse.concierge.service.startlevel/org.eclipse.concierge.service.startlevel-5.0.0.jar
deleted file mode 100644
index 9025c82..0000000
--- a/repository/org.eclipse.concierge.service.startlevel/org.eclipse.concierge.service.startlevel-5.0.0.jar
+++ /dev/null
Binary files differ
diff --git a/repository/org.eclipse.concierge.service.xmlparser/org.eclipse.concierge.service.xmlparser-5.0.0.jar b/repository/org.eclipse.concierge.service.xmlparser/org.eclipse.concierge.service.xmlparser-5.0.0.jar
deleted file mode 100644
index d9bb78a..0000000
--- a/repository/org.eclipse.concierge.service.xmlparser/org.eclipse.concierge.service.xmlparser-5.0.0.jar
+++ /dev/null
Binary files differ
diff --git a/repository/org.eclipse.concierge.shell/org.eclipse.concierge.shell-5.0.0.jar b/repository/org.eclipse.concierge.shell/org.eclipse.concierge.shell-5.0.0.jar
deleted file mode 100644
index 782a10f..0000000
--- a/repository/org.eclipse.concierge.shell/org.eclipse.concierge.shell-5.0.0.jar
+++ /dev/null
Binary files differ
diff --git a/repository/org.eclipse.concierge/org.eclipse.concierge-5.0.0.jar b/repository/org.eclipse.concierge/org.eclipse.concierge-5.0.0.jar
deleted file mode 100644
index 662a477..0000000
--- a/repository/org.eclipse.concierge/org.eclipse.concierge-5.0.0.jar
+++ /dev/null
Binary files differ
diff --git a/repository/org.eclipse.concierge/org.eclipse.concierge-6.0.0.jar b/repository/org.eclipse.concierge/org.eclipse.concierge-6.0.0.jar
deleted file mode 100644
index cd11513..0000000
--- a/repository/org.eclipse.concierge/org.eclipse.concierge-6.0.0.jar
+++ /dev/null
Binary files differ
diff --git a/repository/org.eclipse.equinox.supplement/org.eclipse.equinox.supplement-1.5.100.jar b/repository/org.eclipse.equinox.supplement/org.eclipse.equinox.supplement-1.5.100.jar
deleted file mode 100644
index 4d0f339..0000000
--- a/repository/org.eclipse.equinox.supplement/org.eclipse.equinox.supplement-1.5.100.jar
+++ /dev/null
Binary files differ