-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
69 lines (62 loc) · 1.96 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
plugins {
id "com.vanniktech.maven.publish" version "0.30.0"
}
group = 'io.seats'
version = '85.2.0'
apply plugin: 'java'
sourceCompatibility = 11
repositories {
mavenCentral()
}
import com.vanniktech.maven.publish.SonatypeHost
mavenPublishing {
publishToMavenCentral(SonatypeHost.S01, true)
signAllPublications()
pom {
name = "seatsio-java"
description = "The official seats.io Java client library"
url = "https://github.com/seatsio/seatsio-java"
licenses {
license {
name = "MIT"
url = "https://github.com/seatsio/seatsio-java/blob/master/LICENSE"
distribution = "repo"
}
}
developers {
developer {
id = "mroloux"
name = "Matti Roloux"
url = "https://github.com/mroloux/"
}
developer {
id = "bverbeken"
name = "Ben Verbeken"
url = "https://github.com/bverbeken"
}
}
scm {
url = "https://github.com/seatsio/seatsio-java/"
connection = "scm:git:git://github.com/seatsio/seatsio-java.git"
developerConnection = "scm:git:ssh://[email protected]/seatsio/seatsio-java.git"
}
}
}
dependencies {
implementation 'org.apache.commons:commons-lang3:3.17.0'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.konghq:unirest-java:3.14.5'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'commons-io:commons-io:2.18.0'
testImplementation 'org.awaitility:awaitility:4.2.2'
testRuntimeOnly "org.slf4j:slf4j-api:2.0.16"
}
test {
useJUnitPlatform()
testLogging {
events 'started', 'passed', 'failed', 'skipped'
exceptionFormat = 'full'
}
}