Skip to content

Commit fa66529

Browse files
committed
adding gradle file so that we can have mockito
1 parent 14d5baa commit fa66529

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

build.gradle

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
defaultTasks 'java'
2+
3+
apply plugin: 'eclipse'
4+
apply plugin: 'java'
5+
6+
repositories {
7+
8+
mavenCentral()
9+
10+
}
11+
12+
dependencies {
13+
testCompile 'org.hamcrest:hamcrest-all:1.3',
14+
'org.mockito:mockito-core:1.9.5',
15+
'junit:junit:4.11'
16+
}
17+
18+
configurations {
19+
all*.exclude module: 'hamcrest-core'
20+
all*.exclude module: 'mockito-all'
21+
}

0 commit comments

Comments
 (0)