forked from mazhewitt/java-berlin-clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (28 loc) · 781 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
defaultTasks 'clean', 'build'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
version = '1.0-SNAPSHOT'
group = 'org.suggs.interviews.berlinclock'
task wrapper(type: Wrapper){
description = 'Generates gradlew scripts for NIX and win envs'
gradleVersion = '2.0'
}
repositories {
jcenter()
mavenCentral()
}
idea.module {
downloadSources = true
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.5',
'commons-lang:commons-lang:2.6'
runtime 'org.slf4j:slf4j-log4j12:1.7.5',
'log4j:log4j:1.2.17'
testCompile 'junit:junit:4.11',
'org.mockito:mockito-core:1.9.5',
'org.assertj:assertj-core:1.6.1',
'commons-io:commons-io:2.4',
'org.jbehave:jbehave-core:3.8'
}