forked from eclipse-archived/reddeer
-
Notifications
You must be signed in to change notification settings - Fork 1
Building RedDeer
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:
- You will need git (http://git-scm.com) and maven (http://maven.apache.org/) (and Java) to be installed before you install Red Deer.
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
- Home
- [Release notes] (/jboss-reddeer/reddeer/wiki/Release-notes)
- Articles
- JavaDoc
- User guide
- Contributor Guide
- FAQ