Download

You can download Fuse Fabric from the Fuse Fabric area of the central maven repo.

Fabric is composed of several components and does not provide any binary distribution to run at the moment.

The following distributions are available:

Snapshots

You can download a recent snapshot from the Snapshot Maven Repository in the Fabric area.

Maven

If you build your project using Maven then just add the following to your pom.xml

<dependency>
  <groupId>org.fusesource.fabric</groupId>
  <artifactId>fabric-core</artifactId>
  <version>7.0.1.fuse-084</version>  
</dependency>

The releases should be synchronized to the central maven repository so you should not need to add a maven repository to your pom.xml.

However if a release has not yet made it to the central repository or you want to add a repository for completeness, add the following to your pom.xml

  
<repositories>
   <repository>
     <id>fusesource.m2</id>
     <name>FuseSource Public Repository</name>
     <url>http://repo.fusesource.com/nexus/content/repositories/public</url>
     <snapshots>
       <enabled>false</enabled>
     </snapshots>
     <releases>
       <enabled>true</enabled>
     </releases>
   </repository>
 </repositories>

Snapshots

If you want to use a snapshot version you should ensure you have the Fabric Snapshot Maven repository defined in your pom.xml

  
<repositories>
   <repository>
     <id>fusesource.snapshots</id>
     <name>FuseSource Snapshot Repository</name>
     <url>http://repo.fusesource.com/nexus/content/repositories/snapshots</url>
     <snapshots>
       <enabled>true</enabled>
     </snapshots>
     <releases>
       <enabled>false</enabled>
     </releases>
   </repository>
 </repositories>

Building

If you prefer you can try building from the source code and building it