-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (38 loc) · 937 Bytes
/
build.gradle
File metadata and controls
47 lines (38 loc) · 937 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
39
40
41
42
43
44
45
46
47
group 'co.cdjones'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.8
allprojects {
apply plugin: 'java'
apply plugin: "io.franzbecker.gradle-lombok"
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
dependencies {
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"
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}
buildscript {
repositories {
jcenter()
mavenLocal()
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath "io.franzbecker:gradle-lombok:1.10"
}
}