Getting Started With a JBoss Maven Repository POM Configuration
Join the DZone community and get the full member experience.
Join For FreeThe new JBoss BRMS & JBoss BPM Suite was released yesterday bringing a lot of new improvements, fixes, and features.
One of the most exciting is the availability of a public facing maven repository based on these two products.
To get started with development using these new repositories in your
projects, you will need to add the following to your project pom.xml file.
JBoss Maven Repo
<repositories> <repository> <id>jboss-maven-repository</id> <name>JBoss Maven Repository</name> <url>http://maven.repository.redhat.com/techpreview/all/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatepolicy>never</updatepolicy> </releases> <snapshots> <enabled>false</enabled> <updatepolicy>never</updatepolicy> </snapshots> </repository> </repositories> <pluginrepositories> <pluginrepository> <id>jboss-maven-repository</id> <name>JBoss Maven Repository</name> <url>http://maven.repository.redhat.com/techpreview/all/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatepolicy>never</updatepolicy> </releases> <snapshots> <enabled>false</enabled> <updatepolicy>never</updatepolicy> </snapshots> </pluginrepository> </pluginrepositories>
This will get you rocking with the JBoss BRMS & JBoss BPM Suite product maven repositories in the JBoss Developer Studio in no time!
Published at DZone with permission of Eric D. Schabell, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments