-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
20 lines (17 loc) · 756 Bytes
/
Copy pathbuild.gradle
File metadata and controls
20 lines (17 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
subprojects {
apply plugin: "java"
apply plugin: "eclipse"
repositories {
mavenCentral()
}
eclipse.project {
natures 'org.eclipse.buildship.core.gradleprojectnature'
}
dependencies {
testCompile group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3'
testCompile group: 'junit', name: 'junit-dep', version: '4.10'
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3'
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.+'
testCompile group: 'com.googlecode.catch-exception', name: 'catch-exception', version: '1.2.0'
}
}