-
Notifications
You must be signed in to change notification settings - Fork 27
/
build.gradle
75 lines (59 loc) · 2.05 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
id 'idea'
}
repositories {
mavenCentral()
google()
}
ext {
slf4jVersion = '1.7.32'
lombokVersion = '1.18.22'
jerseyVersion = '2.34'
jacksonVersion = "2.12.5"
}
dependencies {
implementation "org.slf4j:slf4j-api:$slf4jVersion"
implementation "org.slf4j:jcl-over-slf4j:$slf4jVersion"
implementation "org.slf4j:jul-to-slf4j:$slf4jVersion"
implementation "org.slf4j:log4j-over-slf4j:$slf4jVersion"
implementation 'commons-io:commons-io:2.11.0'
implementation "com.fasterxml.jackson.core:jackson-core:$jacksonVersion"
implementation "com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion"
implementation "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jacksonVersion'
implementation "org.glassfish.jersey.core:jersey-client:$jerseyVersion"
implementation "org.glassfish.jersey.inject:jersey-hk2:$jerseyVersion"
implementation "org.glassfish.jersey.media:jersey-media-sse:$jerseyVersion"
implementation "org.glassfish.jersey.media:jersey-media-multipart:$jerseyVersion"
compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
testCompileOnly "org.projectlombok:lombok:$lombokVersion"
testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion"
implementation 'commons-configuration:commons-configuration:1.9'
runtimeOnly 'ch.qos.logback:logback-classic:1.2.7'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.hamcrest:hamcrest:2.2'
}
group = 'com.lesstif'
version = '1.0-SNAPSHOT'
description = 'JIRA REST Client'
java.sourceCompatibility = JavaVersion.VERSION_1_8
java {
withSourcesJar()
withJavadocJar()
}
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}