Skip to content
Snippets Groups Projects
Commit 607979dd authored by Mirco Dotta's avatar Mirco Dotta
Browse files

Fixed compilation issue. Problem was that when compiling FunCheck we have now...

Fixed compilation issue. Problem was that when compiling FunCheck we have now a dependency with ScalaCheck since we 
are using and calling methods of ScalaCheck from the "funcheck/lib/Specs.scala" class
parent 095bf10b
No related branches found
No related tags found
No related merge requests found
......@@ -68,8 +68,11 @@
<target name="compile" description="compile the FunCheck plugin">
<mkdir dir="${build.dir}" />
<scalac srcdir="${sources.dir}" destdir="${build.dir}" force="changed" addparams="${scalac.default.params}">
<classpath refid="build.path" />
<include name="**/*.scala" />
<classpath>
<path refid="build.path" />
<pathelement location="${lib.dir}/ScalaCheck-1.5.jar"/>
</classpath>
<include name="**/*.scala" />
<exclude name="scala/collection/**/*.scala"/>
</scalac>
</target>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment