-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (31 loc) · 834 Bytes
/
build.gradle
File metadata and controls
38 lines (31 loc) · 834 Bytes
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
group 'co.cdjones'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
allprojects {
apply plugin: 'java'
apply plugin: "io.franzbecker.gradle-lombok"
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
buildscript {
repositories {
jcenter()
mavenLocal()
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath "io.franzbecker:gradle-lombok:1.10"
}
}
dependencies {
testCompile group: 'commons-io', name: 'commons-io', version: '2.5'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile "org.assertj:assertj-core:3.8.0"
testCompile "org.powermock:powermock-module-junit4:1.6.4"
testCompile "org.powermock:powermock-api-mockito:1.6.4"
}