forked from functionaljava/functionaljava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (24 loc) · 701 Bytes
/
build.gradle
File metadata and controls
32 lines (24 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
apply plugin: 'scala'
archivesBaseName = "${project.projectName}-${project.name}"
ext {
scalaVersion = "2.10.3"
scalacheckVersion = "1.10.1"
scalacheckScalaVersion = "2.10"
}
tasks.withType(ScalaCompile) {
scalaCompileOptions.useAnt = false
}
test {
scanForTestClasses = false
include '**/*Test.*'
maxHeapSize = "1024m"
}
dependencies {
compile project(":core")
compile 'org.slf4j:slf4j-api:1.7.5'
compile "org.scala-lang:scala-library:$scalaVersion"
testCompile "org.scala-lang:scala-library:$scalaVersion"
testCompile "org.scalacheck:scalacheck_$scalacheckScalaVersion:$scalacheckVersion"
testCompile dependencyJunit
testCompile 'org.scalatest:scalatest_2.10:1.9.2'
}