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
50 lines (38 loc) · 1.27 KB
/
build.gradle
File metadata and controls
50 lines (38 loc) · 1.27 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* This build file was auto generated by running the Gradle 'init' task
* by 'MarkPerry' at '12/12/13 10:02 AM' with Gradle 1.9
*
* This generated file contains a sample Scala library project to get you started.
* For more details take a look at the Scala plugin chapter in the Gradle
* user guide available at http://gradle.org/docs/1.9/userguide/scala_plugin.html
*/
// Apply the scala plugin to add support for Scala
apply plugin: 'scala'
ext {
scalaVersion = "2.10.3"
scalacheckVersion = "1.10.+"
scalacheckScalaVersion = "2.10"
}
tasks.withType(ScalaCompile) {
scalaCompileOptions.useAnt = false
}
test {
scanForTestClasses = false
include '**/*Test.*'
}
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'maven central' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
mavenCentral()
mavenLocal()
}
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 "junit:junit:4.11"
testCompile 'org.scalatest:scalatest_2.10:1.9.2'
}