-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·51 lines (42 loc) · 1.03 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
buildscript { apply from: file('gradle/buildscript.gradle'), to: buildscript }
apply from: "$rootDir/gradle/dependencies.gradle"
apply from: "$rootDir/gradle/wrapper.gradle"
apply from: "$rootDir/gradle/compile.gradle"
apply from: "$rootDir/gradle/artifacts.gradle"
apply from: "$rootDir/gradle/quality.gradle"
apply plugin: "idea"
apply plugin: "eclipse"
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile([
libs.curatorRecipes,
libs.scala,
libs.slf4jApi,
])
runtime ([
libs.scalaCompiler, // For the scalaConsole task
])
testCompile([
libs.curatorTest,
libs.jUnit,
libs.logbackClassic,
libs.scalaTest,
])
scoverage([
libs.scoveragePlugin,
libs.scoverageRuntime,
])
}
configurations {
all*.exclude group: 'log4j', module: 'log4j'
}
test {
maxParallelForks = Runtime.runtime.availableProcessors()
testLogging {
events "passed", "skipped", "failed"
exceptionFormat = 'full'
}
}