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:
- In the Red Hat customer portal, go to https://access.redhat.com/jbossnetwork/restricted/listSoftware.html?product=jboss.fuse&downloadType=distributions.
- Select the Fuse version you are using. This displays the downloads for that Fuse version.
- Select the offline Maven repository that meets your needs.
- Click.
- Unpack the downloaded zip file into an accessible location.
- 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>