[jboss-user] [jBPM] - Re: jBPM 5.2.0 & Maven

gardellajp do-not-reply at jboss.com
Tue Jan 24 06:08:16 EST 2012


gardellajp [https://community.jboss.org/people/gardellajp] created the discussion

"Re: jBPM 5.2.0 & Maven"

To view the discussion, visit: https://community.jboss.org/message/648369#648369

--------------------------------------------------------------
Suppose that artifact is not in maven central repository yet, so you can add this to your pom.xml:

<repositories>
        <!-- use this repository for stable releases -->
        <repository>
            <id>jboss-public-repository-group</id>
            <name>JBoss Public Maven Repository Group</name>
            <url> https://repository.jboss.org/nexus/content/groups/public/ https://repository.jboss.org/nexus/content/groups/public/</url>
            <layout>default</layout>
            <releases>
                <enabled>true</enabled>
                <updatePolicy>never</updatePolicy>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>

        <!-- use this repository for snapshot releases -->
        <repository>
            <id>jboss-snapshot-repository-group</id>
            <name>JBoss SNAPSHOT Maven Repository Group</name>
            <url> https://repository.jboss.org/nexus/content/repositories/snapshots/ https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
            <layout>default</layout>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
                <updatePolicy>never</updatePolicy>
            </snapshots>
        </repository>
    </repositories>

With this repositories, maven will can find the artifact and it's dependencies.

Juan
--------------------------------------------------------------

Reply to this message by going to Community
[https://community.jboss.org/message/648369#648369]

Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20120124/5de37fcc/attachment.html 


More information about the jboss-user mailing list