-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (43 loc) · 1.22 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
group 'com.ivojesus'
version '1.0-SNAPSHOT'
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.franzbecker:gradle-lombok:1.8"
}
}
apply plugin: "io.franzbecker.gradle-lombok"
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
jar {
from {
(configurations.runtime).collect {
it.isDirectory() ? it : zipTree(it)
}
}
manifest {
attributes 'Main-Class': 'com.ivojesus.app.Application'
}
}
dependencies {
compile "com.beust:jcommander:1.72"
compile "com.google.inject:guice:4.0"
compile "com.squareup.okhttp3:okhttp:3.8.0"
compile 'com.fasterxml.jackson.core:jackson-core:2.8.8'
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.8'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.8'
// testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'com.greghaskins:spectrum:1.1.1'
testCompile 'org.hamcrest:hamcrest-junit:2.0.0.0'
testCompile 'io.github.azagniotov:stubby4j:5.0.0'
testCompile 'org.mockito:mockito-core:2.+'
testCompile 'com.natpryce:make-it-easy:4.0.0'
}