Installing Red Hat JBoss Fuse Service Works 6.0.0 Rollup Patch 2 Incremental Maven Repository

Updated -

Overview

To build and run the Quickstarts for Red Hat JBoss Fuse Service Works, you have to have access to the appropriate Maven repositories.
If you have installed Red Hat JBoss Fuse Service Works 6.0. Rollup Patch 2, then you will have to install Red Hat JBoss Fuse Service Works 6.0.0 Rollup Patch 2 Incremental Maven Repository.

Procedure

  1. Download the Red Hat JBoss Fuse Service Works 6.0.0 Rollup Patch 2 Incremental Maven Repository
  2. Unzip the downloaded ZIP files into an arbitrary location in a local file system.
  3. Add entries for the unzipped repositories to Maven's settings.xml file. Base your entries on the following code:
            <repository>
​              <id>BZ-1085860-repo</id>
​              <name>Red Hat JBoss Fuse Service Works 6.0.0 Rollup Patch 2</name>
​              <url>file://<!-- path to the repository -->/BZ-1085860-repo/maven-repository/</url>
​              <layout>default</layout>
​              <releases>
​                <enabled>true</enabled>
​                <updatePolicy>never</updatePolicy>
​              </releases>
​              <snapshots>
​                <enabled>false</enabled>
​                <updatePolicy>never</updatePolicy>
​              </snapshots>
​            </repository>

...

             <pluginRepository>
​              <id>BZ-1085860-repo</id>
​                  <name>Red Hat JBoss Fuse Service Works 6.0.0 Rollup Patch 2</name>
​                      <url>file://<!-- path to the repository -->/BZ-1085860-repo/maven-repository/</url>
​                      <layout>default</layout>
​                      <releases>
​                        <enabled>true</enabled>
​                <updatePolicy>never</updatePolicy>
​              </releases>
​              <snapshots>
​                <enabled>false</enabled>
​                <updatePolicy>never</updatePolicy>
​              </snapshots>
​            </pluginRepository>

Comments