1 Reply Latest reply on Nov 20, 2013 6:36 PM by kcbabo

    Quickstarts fail to build

    staffsgull

      I am having trouble building the quickstarts supplied with FSW 6.

       

      This happens with all, but the example is the bpel say_hello example I have used below.

       

      mvn clean install

       

      Error report is

      ........

      Non-resolvable parent POM for org.jboss.ip.component.management:ip-parent:1.0-redhat-6: Could not find artifact org.jboss:jboss-parent:pom:10-redhat-2 in jboss-eap-repository (http://maven.repository.redhat.com/techpreview/ip6/6.0.0.Beta/maven-repository/) @ org.jboss.ip.component.management:ip-parent:1.0-redhat-6, /home/redhat/.m2/repository/org/jboss/ip/component/management/ip-parent/1.0-redhat-6/ip-parent-1.0-redhat-6.pom, line 27, column 13 -> [Help 2]

       

      I tried using the downloaded maven repo, and now am using the http://maven.repository.redhat.com/techpreview/ip6/6.0.0.Beta/maven-repository/ in my settings.xml

       

      I can show the full settings.xml if it is any use, but it is standard according to the doco.

       

      I downloaded the latest switchyard quickstarts and they work fine.

       

      Hope somebody can enlighten me :-)

       

      Rod

        • 1. Re: Quickstarts fail to build
          kcbabo

          The FSW repository is "layered" on the EAP repository, so you'll need to include the EAP repository definition in your settings.xml as well.  Here's what I use in mine:

                  <repository>
                    <id>eap</id>
                    <name>eap</name>
                    <url>http://maven.repository.redhat.com/techpreview/all/</url>
                    <layout>default</layout>
                    <releases>
                      <enabled>true</enabled>
                      <updatePolicy>never</updatePolicy>
                    </releases>
                    <snapshots>
                      <enabled>true</enabled>
                      <updatePolicy>never</updatePolicy>
                    </snapshots>
                  </repository>
          

           

          I also have a pluginRepository defined for EAP with the same URL as above.

           

          hth,

          keith