-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[JBOSGI-184] Allow for overlay of jboss-osgi-bootstrap.xml
Add FIXME [JBOSGI-316] Test integrity of the jboss-osgi-framework-all.jar
- Loading branch information
tdiesler
committed
Apr 29, 2010
1 parent
e8aaf2b
commit b688a0c
Showing
14 changed files
with
387 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
bundle/src/test/resources/META-INF/jboss-osgi-bootstrap.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<deployment xmlns="urn:jboss:bean-deployer:2.0"> | ||
|
||
<!-- | ||
******************************** | ||
* * | ||
* OSGi Framework * | ||
* * | ||
******************************** | ||
--> | ||
|
||
<bean name="OSGiBundleManager" class="org.jboss.osgi.framework.bundle.OSGiBundleManager"> | ||
<constructor> | ||
<parameter><inject bean="jboss.kernel:service=Kernel" /></parameter> | ||
<parameter><inject bean="MainDeployer" /></parameter> | ||
</constructor> | ||
<property name="properties"> | ||
<map keyClass="java.lang.String" valueClass="java.lang.String"> | ||
<entry><key>org.osgi.framework.storage</key><value>target/osgi-store</value></entry> | ||
<entry><key>org.osgi.framework.storage.clean</key><value>onFirstInit</value></entry> | ||
<entry><key>org.osgi.framework.system.packages.extra</key><value> | ||
|
||
<!-- logging --> | ||
org.apache.log4j;version=1.2, | ||
org.jboss.logging;version=2.1, | ||
|
||
<!-- jboss --> | ||
org.jboss.beans.metadata.plugins;version=2.2, | ||
org.jboss.beans.metadata.plugins.builder;version=2.2, | ||
org.jboss.beans.metadata.spi;version=2.2, | ||
org.jboss.beans.metadata.spi.builder;version=2.2, | ||
org.jboss.dependency.spi;version=2.2, | ||
org.jboss.kernel.spi.dependency;version=2.2, | ||
|
||
<!-- jboss-osgi --> | ||
org.jboss.osgi.spi;version=1.0, | ||
org.jboss.osgi.spi.capability;version=1.0, | ||
org.jboss.osgi.spi.framework;version=1.0, | ||
org.jboss.osgi.spi.service;version=1.0, | ||
org.jboss.osgi.spi.util;version=1.0, | ||
org.jboss.osgi.testing;version=1.0 | ||
</value></entry> | ||
</map> | ||
</property> | ||
<incallback method="addPlugin" /> | ||
<uncallback method="removePlugin" /> | ||
</bean> | ||
|
||
</deployment> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.