I have made some new builds of ScalaCheck available at the
scala-tools.org repository.
ScalaCheck 1.6 has been built with Scala 2.7.7 and is available
at http://www.scala-tools.org/repo-releases as the following
artifact:
group id: org.scala-tools.testing
version: 1.6
artifact id: scalacheck_2.7.7
ScalaCheck 1.7-SNAPSHOT has been built with Scala
2.8.0-20091106.025327. The build is available at
http://www.scala-tools.org/repo-snapshots as the
following artifact:
group id: org.scala-tools.testing
version: 1.7-SNAPSHOT
artifact id: scalacheck_2.8.0-20091106.025327-+
or
artifact id: scalacheck_2.8.0-SNAPSHOT
The jars are also available from the ScalaCheck
site, http://code.google.com/p/scalacheck/downloads .
Regards,
Rickard Nilsson
Hello !
Thanks for these new build, they seems to work great with last 2.8.
But it seems something bad happen we the "scalacheck_2.8.0-SNAPSHOT"
version. With that one, I get "missing class VectorLike" errors (because
it was renamed some days ago).
Everything is OK with "scalacheck_2.8.0-20091106.025327-+", but I can't
use it with maven (it complains that it doesn't understand the "-+")
(well, I have to lie to maven by downloading by hand
scalacheck_2.8.0-20091106.025327-+ and coping it in place of
scalacheck_2.8.0-SNAPSHOT)
Moreover, the two jar's size differ.
Hope it helps,
--
Francois Armand
The Prop.property method was deprecated in ScalaCheck 1.5
and removed in ScalaCheck 1.6. It has been replaced with
Prop.forAll. You should have seen that error also when you
built with 1.6... Anyway, just try to use Prop.forAll instead,
it should work.
The javadocs for the snapshot release are published together
with the other jars at the scala-tools maven repository. The
direct link is:
There's unfortunately no browsable version available for 1.7.
Regards,
Rickard