-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (47 loc) · 1.18 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
52
53
54
55
56
57
defaultTasks 'clean', 'check'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'findbugs'
version = '1.0.0'
group = 'com.ubs.opsit.interviews.berlinclock'
sourceCompatibility = 1.8
targetCompatibility = 1.8
task wrapper(type: Wrapper) {
gradleVersion = '2.12'
}
repositories {
jcenter()
}
idea {
project {
jdkName = '1.8'
languageLevel = '1.8'
}
module {
downloadJavadoc = true
downloadSources = true
}
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.21',
'commons-lang:commons-lang:2.6'
runtime 'org.slf4j:slf4j-log4j12:1.7.21',
'log4j:log4j:1.2.17'
testCompile 'junit:junit:4.12',
'org.mockito:mockito-core:2.0.47-beta',
'org.assertj:assertj-core:3.4.1',
'commons-io:commons-io:2.4',
'org.jbehave:jbehave-core:4.0.5',
// https://github.com/Pragmatists/JUnitParams
'pl.pragmatists:JUnitParams:1.0.5'
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.ben-manes:gradle-versions-plugin:0.12.0'
}
}