Description of problem: Snowdrop dependencies are not up-to-date with EAP6 ER6 and WFK2 ER5. Version-Release number of selected component (if applicable): Spring 3.1 variant, however all are probably affected. How reproducible: Always. Steps to Reproduce: 1. mvn -s /path/to/settings.xml clean package Actual results: Fails on missing dependencies. net.sourceforge.cssparser -> likely invalid metadata richfaces -> old version jboss-javaee-*spec -> old version Expected results: It builds. Additional info: Workaround: Modify sporstclub-bom to list the following: <dependencies> <dependency> <groupId>net.sourceforge.cssparser</groupId> <artifactId>cssparser</artifactId> <version>0.9.5</version> </dependency> <dependency> <groupId>org.jboss.spec</groupId> <artifactId>jboss-javaee-6.0</artifactId> <version>3.0.0.Final-redhat-1</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>com.redhat.jboss.wfk.boms</groupId> <artifactId>spring-3.1-bom</artifactId> <version>2.0.0-redhat-6</version> <scope>import</scope> <type>pom</type> </dependency> <!-- Richfaces --> <dependency> <groupId>org.richfaces</groupId> <artifactId>richfaces-bom</artifactId> <version>4.2.1.Final-redhat-1</version> <scope>import</scope> <type>pom</type> </dependency> ... rest omitted for brevity...
fixed in http://git.app.eng.bos.redhat.com/?p=snowdrop/snowdrop-examples.git;a=commit;h=87d77695d829fbe6c3aa92ba43c330852d96fbf4
Verified in WFK2 ER6.