summaryrefslogtreecommitdiff
path: root/cli/build.gradle
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2012-10-29 21:09:23 -0600
committerRocky Madden <git@rockymadden.com>2012-10-29 21:09:23 -0600
commit87fe4ecab26dcc912ca4b683663ad94e0ff0aede (patch)
treebf874d0aa389be51e24a996e004684d35e830055 /cli/build.gradle
parentc70b5119d581b2349193664b89fb08c6ad20586d (diff)
downloadstringmetric-87fe4ecab26dcc912ca4b683663ad94e0ff0aede.tar.gz
stringmetric-87fe4ecab26dcc912ca4b683663ad94e0ff0aede.tar.bz2
stringmetric-87fe4ecab26dcc912ca4b683663ad94e0ff0aede.zip
Fixed bug where tests were failing via Gradle due to missing testCompile dependency.
Diffstat (limited to 'cli/build.gradle')
-rwxr-xr-xcli/build.gradle3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/build.gradle b/cli/build.gradle
index 6cd8aea..9f9f80d 100755
--- a/cli/build.gradle
+++ b/cli/build.gradle
@@ -1,6 +1,8 @@
apply plugin: 'eclipse'
apply plugin: 'scala'
+evaluationDependsOn(':stringmetric-core')
+
dependencies {
compile project(':stringmetric-core')
compile 'org.scala-lang:scala-compiler:2.9.2'
@@ -9,6 +11,7 @@ dependencies {
scalaTools 'org.scala-lang:scala-compiler:2.9.2'
scalaTools 'org.scala-lang:scala-library:2.9.2'
+ testCompile project(':stringmetric-core').sourceSets.test.output
testCompile 'junit:junit:4.10'
testCompile 'org.scalatest:scalatest_2.9.2:1.8'
}