2 Replies Latest reply on Nov 27, 2008 4:22 AM by lboda

    Jopr plugin

    lboda

      Hi all,
      I am trying to build Jopr plugin for Jboss 4.X http://www.jboss.org/community/docs/DOC-12830
      Tere are artifact jopr-modules-parent and jopr-jboss-as-plugin, that maven (svn) can't download, despite I can see the sources in the browser.
      Can anybody help ? Thanks a lot. Ludo

        • 1. Re: Jopr plugin
          ips

          Hi,

          In order to pull down the jboss-as plugin's parent pom and its other SNAPSHOT deps, you'll need to add the JBoss Maven snapshot repository to a profile in your ~/.m2/settings.xml, e.g.:

          <profiles>
           <profile>
           <id>snapshots</id>
           <repositories>
           <repository>
           <id>jboss-snapshots</id>
           <name>JBoss Snapshot Repository</name>
           <url>http://snapshots.jboss.org/maven2/</url>
           <snapshots>
           <enabled>true</enabled>
           </snapshots>
           </repository>
           </repositories>
           </profile>
          </profiles>


          Then activate the profile when running mvn:

          mvn -Psnapshots ...



          • 2. Re: Jopr plugin
            lboda

            Thank you Ips!