Hello,
The maven links on the start page are not up to date (http://
etorreborre.github.com/specs2/#Dependencies).
Also, it might be good to add this maven blurp:
<build>
<plugins>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<executions>
<execution>
<id>scala-compile-first</id>
<phase>process-resources</phase>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>scala-test-compile</id>
<phase>process-test-resources</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<scalaVersion>2.9.0</scalaVersion>
</configuration>
</plugin>
</plugins>
</build>
Regards,
Erik.