On 8/11/07, Sean Sullivan <[EMAIL PROTECTED]> wrote: > I updated my workspace and I have all of the latest Wicket trunk code. When > I build with Maven: > > mvn clean install > > I see test failures:
I just ran all unit tests and had no problems. Can you update and try again? Btw, you can see the status of builds here http://wicketstuff.org/bamboo/ Also, note that you don't have to build yourself if you want to use snapshots. You can include: <repositories> <repository> <id>wicket-stuff.org</id> <url>http://wicketstuff.org/maven/repository/</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>org.apache.wicket</groupId> <artifactId>wicket</artifactId> <version>1.3.0-SNAPSHOT</version> <type>jar</type> <scope>compile</scope> </dependency> in your maven file, so that you'll get the snapshots from our build server. Or yet another way (which I use for development) is to just check the wicket projects out and use them as project dependencies in my Eclipse workspace. Eelco
