Skip to content
vpakan edited this page Dec 3, 2014 · 2 revisions

Installing Red Deer

Note that the URLs and version numbers included in these instructions will change as new versions of Red Deer become available.

Prerequisites:

And, you will have to configure maven's settings.xml to use jboss nexus repo:

<settings>
    <profiles>
        <profile>
            <id>jboss-maven-repos</id>
            <repositories>
            <repository>
                <id>jboss-releases</id>
                <url>https://repository.jboss.org/nexus/content/repositories/releases</url>
                <releases>
                    <enabled>true</enabled>
                </releases> 
            </repository>
            <repository>
                <id>jboss-snapshots-repository</id>
                <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
                <snapshots>
                    <enabled>true</enabled>
                </snapshots> 
            </repository>
        </repositories>
        </profile>
    </profiles>
    <activeProfiles>
        <activeProfile>jboss-maven-repos</activeProfile>
    </activeProfiles>
</settings>

Building Red Deer from Source

First, get a copy of the Red Deer source code:

git clone https://github.com/jboss-reddeer/reddeer.git

Then, build Red Deer:

cd reddeer/org.jboss.reddeer.parent
mvn clean install

Red Deer's .jar file will be created in the target directory.

JBoss Red Deer - Quick Links

Clone this wiki locally