-
Feature Request
-
Resolution: Done
-
Major
-
2.4.0.Final
-
None
-
modeshape 2.5, felix 3.0.7, maven 3
I've seen that many modeshape modulescan be deployed in a osgi repository through the maven plugin configuration:
<plugins>
<!--
Adding OSGI metadata to the JAR without changing the packaging type.
-->
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
but not all..... here I enlist the modules without this plugin. It's important to know which modules must be deployed in a osgi repository:
deploy deploy/jbossas deploy/jbossas/modeshape-jbossas-console deploy/jbossas/modeshape-jbossas-service deploy/jbossas/modeshape-jbossas-web-rest-war deploy/jbossas/modeshape-jbossas-web-webdav-war docs docs/examples docs/examples/gettingstarted/repositories docs/examples/gettingstarted/sequencers docs/gettingstarted docs/jdbc-guide docs/reference modeshape-integration-tests modeshape-jcr-tck sandbox/modeshape-sequencer-esb-message utils/modeshape-jpa-ddl-gen web/modeshape-web-jcr web/modeshape-web-jcr-rest web/modeshape-web-jcr-rest-war web/modeshape-web-jcr-webdav web/modeshape-web-jcr-webdav-war