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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>de.twentyeleven.osgiexamples</groupId> | |
<artifactId>org.antlr.stringtemplate-osgi</artifactId> | |
<packaging>bundle</packaging> | |
<name>OSGi stringtemplate classes</name> | |
<version>4.0.2</version> |
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
Import-Package: !org.antlr.stringtemplate, \ | |
javax.swing.*;resolution:=optional,\ | |
* | |
Export-Package: * |
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
g! inspect cap service 54 | |
skysail.server [54] provides: | |
----------------------------- | |
service; de.twenty11.skysail.server.config.ServerConfiguration with properties: | |
component.id = 1 | |
component.name = de.twenty11.skysail.server.config.ServerConfiguration | |
service.id = 42 | |
Used by: | |
skysail.server.security.shiro [56] | |
skysail.server [54] |
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
skysail.server [54] requires: | |
----------------------------- | |
service; org.osgi.service.log.LogService provided by: | |
org.apache.felix.log [40] | |
service; org.osgi.service.cm.ManagedService, de.twenty11.skysail.common.config.ConfigurationProvider provided by: | |
skysail.config.configadmin [2] | |
service; org.osgi.service.cm.ConfigurationAdmin provided by: | |
org.apache.felix.configadmin [25] | |
service; de.twenty11.skysail.server.config.ServerConfiguration provided by: | |
skysail.server [54] |
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
skysail.server [54] provides: | |
----------------------------- | |
osgi.wiring.package; de.twenty11.skysail.server.restlet 0.0.0 required by: | |
skysail.server.um [55] | |
skysail.server.ext.notes [57] | |
skysail.server.static [58] | |
osgi.wiring.package; de.twenty11.skysail.server.presentation.stringtemplate 0.0.0 [UNUSED] | |
osgi.wiring.package; de.twenty11.skysail.server.utils 0.0.0 [UNUSED] | |
osgi.wiring.package; de.twenty11.skysail.server.domain 0.0.0 [UNUSED] | |
osgi.wiring.package; de.twenty11.skysail.server.events 0.0.0 [UNUSED] |
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
<plugin> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>maven-bundle-plugin</artifactId> | |
<configuration> | |
<instructions> | |
<_include>-osgi.bnd</_include> | |
</instructions> | |
</configuration> | |
</plugin> |
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
Import-Package: com.thoughtworks.xstream.annotations,\ | |
org.codehaus.jackson.annotate,\ | |
org.codehaus.jackson.map.annotate,\ | |
org.apache.commons.lang,\ | |
* | |
Export-Package: de.twenty11.skysail.common;version="0.2.1",\ | |
de.twenty11.skysail.common.commands;version="0.0.1",\ | |
de.twenty11.skysail.common.config;version="0.0.1",\ | |
de.twenty11.skysail.common.forms;version="0.2.0",\ | |
de.twenty11.skysail.common.graphs;version="0.2.0",\ |
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
-sub: *.bnd | |
-buildpath: javax.persistence;version=2.0,\ | |
org.apache.commons.dbcp;version=1.4,\ | |
com.googlecode.flyway.core;version=2.2,\ | |
biz.aQute.bnd.annotation;version=1.52 | |
-runbundles: org.apache.felix.gogo.command;version=0.12.0,\ | |
org.apache.felix.gogo.runtime;version=0.10.0,\ | |
org.apache.felix.gogo.shell;version=0.10.0,\ | |
org.apache.felix.scr;version=1.6.2,\ | |
javax.persistence;version=2.0.3,\ |
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
Service-Component: * | |
Include-Resource: resources | |
Meta-Persistence: META-INF/persistence.xml | |
Import-Package: org.apache.derby.jdbc,\ | |
org.eclipse.persistence.internal.jpa.rs.metadata.model,\ | |
org.osgi.framework,\ | |
* | |
Export-Package: examples.osgi.flyway.contacts.db,\ | |
dbmig.contacts.derby,\ | |
examples.osgi.flyway.contacts.domain,\ |
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
Include-Resource: dbmig=resources/dbmig | |
Fragment-Host: com.googlecode.flyway.core | |
Bundle-Version: 0.1.0.${tstamp} | |
Import-Package: org.osgi.framework,\ | |
* |
OlderNewer