This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Sbt/scalatest config problem, help appreciated.

1 reply
Kenneth McDonald
Joined: 2009-01-11,
User offline. Last seen 42 years 45 weeks ago.

Hi, I'm just getting started with sbt, and am having a config problem when I try to run 'test'. First, my .../project/build/Rex.scala sbt config file:

import sbt._

class Rex(info: ProjectInfo) extends DefaultProject(info) {
val scalaToolsSnapshots = ScalaToolsSnapshots
val scalatest = "org.scalatest" % "scalatest" % "1.2"
}

This was pretty much copied and slightly modified from "http://www.paulbutcher.com/2010/04/scala-2-8-0-rc1-sbt-and-scalatest-step-by-step/". Thanks Paul!

I've run 'update' and it successfully pulled down the scalatest 1.2 jar and installed it.

When I run 'test', I get the following error (edited for brevity). I'm sure this is a very simple config error, but at the moment I'm just in the "copy and paste example" mode for learning sbt :-).

> > test
> ...stuff edited out...
> [info] == test-compile ==
> java.lang.NoClassDefFoundError: org/scalatools/testing/Framework
> at java.lang.ClassLoader.defineClass1(Native Method)
> at java.lang.ClassLoader.defineClassCond(ClassLoader.java:632)
> at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
> ...stuff edited out...
> at sbt.Distributor$Run$Worker$$anonfun$2.apply(ParallelRunner.scala:131)
> at sbt.Control$.trapUnit(Control.scala:19)
> at sbt.Distributor$Run$Worker.run(ParallelRunner.scala:131)
> [info]
> [info] == copy-test-resources ==
> [info] == copy-test-resources ==
> [error] Error running test-compile: java.lang.NoClassDefFoundError: org/scalatools/testing/Framework
> [info]
> [info] Total time: 0 s, completed Jan 20, 2011 2:36:11 PM
> >

Thanks in advance,
Ken

Stefan Langer
Joined: 2009-10-23,
User offline. Last seen 42 years 45 weeks ago.
Re: Sbt/scalatest config problem, help appreciated.

What scala version are you running? Make sure that you are actually
using a 2.8.0 build version. I had trouble with the pulled down
version of 1.2 scalatest using it with a 2.7.x scala version. If you
need to use 2.7.x use scalatest 1.1

Btw I do not think you need the scalaToolsSnapshots for scalatest as
there is a official release in the scala-tools repositories.

Stefan

2011/1/20 Kenneth McDonald :
> Hi, I'm just getting started with sbt, and am having a config problem when I try to run 'test'. First, my .../project/build/Rex.scala sbt config file:
>
>        import sbt._
>
>        class Rex(info: ProjectInfo) extends DefaultProject(info) {
>          val scalaToolsSnapshots = ScalaToolsSnapshots
>          val scalatest = "org.scalatest" % "scalatest" % "1.2"
>        }
>
> This was pretty much copied and slightly modified from "http://www.paulbutcher.com/2010/04/scala-2-8-0-rc1-sbt-and-scalatest-step-by-step/". Thanks Paul!
>
> I've run 'update' and it successfully pulled down the scalatest 1.2 jar and installed it.
>
> When I run 'test', I get the following error (edited for brevity). I'm sure this is a very simple config error, but at the moment I'm just in the "copy and paste example" mode for learning sbt :-).
>
>> > test
>> ...stuff edited out...
>> [info] == test-compile ==
>> java.lang.NoClassDefFoundError: org/scalatools/testing/Framework
>>         at java.lang.ClassLoader.defineClass1(Native Method)
>>         at java.lang.ClassLoader.defineClassCond(ClassLoader.java:632)
>>         at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
>> ...stuff edited out...
>>         at sbt.Distributor$Run$Worker$$anonfun$2.apply(ParallelRunner.scala:131)
>>         at sbt.Control$.trapUnit(Control.scala:19)
>>         at sbt.Distributor$Run$Worker.run(ParallelRunner.scala:131)
>> [info]
>> [info] == copy-test-resources ==
>> [info] == copy-test-resources ==
>> [error] Error running test-compile: java.lang.NoClassDefFoundError: org/scalatools/testing/Framework
>> [info]
>> [info] Total time: 0 s, completed Jan 20, 2011 2:36:11 PM
>> >
>
> Thanks in advance,
> Ken

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland