-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (31 loc) · 826 Bytes
/
build.gradle
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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.ben-manes:gradle-versions-plugin:0.7'
}
}
plugins {
id "com.jfrog.bintray" version "1.0"
}
apply plugin: 'scala'
apply plugin: 'com.github.ben-manes.versions'
sourceCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
compile 'org.scala-lang:scala-library:2.11.5'
compile 'org.scala-lang.modules:scala-parser-combinators_2.11:1.0.3'
testCompile 'junit:junit:4.11'
testCompile 'org.scalatest:scalatest_2.11:2.2.2'
testRuntime 'org.scala-lang.modules:scala-xml_2.11:1.0.2'
}
tasks.withType(ScalaCompile) {
scalaCompileOptions.useAnt = false
scalaCompileOptions.useCompileDaemon = true
scalaCompileOptions.additionalParameters = [
"-feature"
]
}