3 Replies Latest reply on Jun 8, 2011 11:23 AM by kcbabo

    Building SwitchYard-AS6

    mageshbk

      I noticed that with a clean build on this repo https://github.com/jboss-switchyard/release an error is thrown

      Unable to get resource 'org.switchyard:switchyard-as6-build:zip:0.1.0-SNAPSHOT'
      

       

      This is due to the fact that it never gets deployed to the maven repo

      <groupId>org.switchyard</groupId>
      <artifactId>switchyard-as6-build</artifactId>
      <version>${project.parent.version}</version>
      <packaging>pom</packaging>
      <name>SwitchYard: AS6 Packager</name>
      <description>SwitchYard AS6 Packager</description>
      <build>
          <plugins>
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <configuration>
                  <skip>true</skip>
                </configuration>
              </plugin>
          </plugins>
      </build> 
      

       

      Shouldn't we deploy this for the release build to work independently?