rogergl
rogergl

Reputation: 3781

JBoss Forge - How to setup arquillian

I used JBoss 7 and JBoss Forge 1.x a while ago and was quite happy with the setup. Now I want to use the latest 2.8 release with JBoss 8.1 and can't even setup Arquillian.

Running:

forge install-plugin arquillian

gives

forge: unrecognized option: 'install-plugin'

Following the various how to's din't help since most of them seem to be made for older Arquillian and JBoss releases.

forge --install arquillian

gives

downloading: http://repo1.maven.org/maven2/org/jboss/forge/addon/arquillian/maven-   metadata.xml
java.lang.IllegalArgumentException: No Artifact version found for   org.jboss.forge.addon:arquillian

Are there any recent descriptions on how to setup arquillian using forge ?

Upvotes: 2

Views: 692

Answers (1)

gastaldi
gastaldi

Reputation: 778

To install the Arquillian addon, you need to run the following command:

addon-install-from-git --url https://github.com/forge/plugin-arquillian.git --coordinate org.arquillian.forge:arquillian-addon --ref forge2

More info here: http://forge.jboss.org/addon/org.arquillian.forge:arquillian-addon

Upvotes: 6

Related Questions