You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Download Snapshots

CXF-DOSGi has not yet been released. However, you can download 1.0-SNAPSHOT distributions from the following locations:

Single-Bundle distribution download from here
Multi-Bundle distribution download from here

Maven

You can also pull the snapshots in via maven. Add the Apache Snapshot repository to your maven repositories:

<repository>
  <id>apache.snapshots</id>
  <name>Apache Maven Snapshot Repository</name>
  <url>http://repository.apache.org/content/groups/snapshots/</url>
  <releases>
    <enabled>false</enabled>
  </releases>
  <snapshots>
    <enabled>true</enabled>
  </snapshots>
</repository>

Then you can depend on the components in maven.
For the Single Bundle Distribution you depend on

<groupId>org.apache.cxf.dosgi</groupId>
<artifactId>cxf-dosgi-ri-singlebundle-distribution</artifactId>
<version>1.0-SNAPSHOT</version>

When using the Multi Bundle Distribution you add the following dependencies:

<dependency>
  <groupId>org.apache.cxf</groupId>
  <artifactId>cxf-bundle-minimal</artifactId>
  <version>2.2-SNAPSHOT</version>
</dependency>
<dependency>
  <groupId>org.apache.cxf.dosgi</groupId>
  <artifactId>cxf-dosgi-ri-discovery-local</artifactId>
  <version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
  <groupId>org.apache.cxf.dosgi</groupId>
  <artifactId>cxf-dosgi-ri-dsw-cxf</artifactId>
  <version>1.0-SNAPSHOT</version>
</dependency>

Download Releases

There are no releases yet.

  • No labels