Red Hat Training

A Red Hat training course is available for Red Hat Fuse

Chapter 4. Download the Offline Repository

A Maven repository that contains the artifacts required for the Integration Pack is available for download. It is an optional download and is provided for when an offline Maven repository is used.
Note
This repository is useful only if you are using offline Maven repositories.
To use an offline Maven repository:
  1. Select the Fuse version you are using. This displays the downloads for that Fuse version.
  2. Select the offline Maven repository that meets your needs.
  3. Click Download.
  4. Unpack the downloaded zip file into an accessible location.
  5. Add entries for the unzipped repositories to Maven's settings.xml file. Base your entry on the code below.
         <repository>
    ​      <id>BPMS-repo</id>
    ​       <name>Red Hat JBoss Fuse 6.3.0</name>
    ​        <url>file://file-location/BPMS-repo/maven-repository/</url>
    ​        <layout>default</layout>
    ​        <releases>
    ​          <enabled>true</enabled>
    ​          <updatePolicy>never</updatePolicy>
    ​        </releases>
    ​        <snapshots>
    ​          <enabled>false</enabled>
    ​          <updatePolicy>never</updatePolicy>
    ​        </snapshots>
    ​    </repository>