-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
74 lines (65 loc) · 2.33 KB
/
build.gradle.kts
File metadata and controls
74 lines (65 loc) · 2.33 KB
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
plugins {
java
`java-library`
`maven-publish`
signing
checkstyle
id("com.vanniktech.maven.publish") version "0.36.0"
}
group = "org.eclipse.dataplane-core"
version = "0.0.7-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation("com.fasterxml.jackson.core:jackson-databind:2.21.2")
implementation("com.nimbusds:nimbus-jose-jwt:10.8")
implementation("jakarta.ws.rs:jakarta.ws.rs-api:4.0.0")
testImplementation(platform("org.junit:junit-bom:6.0.3"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testImplementation("io.rest-assured:rest-assured:6.0.0")
testImplementation("org.assertj:assertj-core:3.27.7")
testImplementation("org.awaitility:awaitility:4.3.0")
testImplementation("org.eclipse.jetty.ee10:jetty-ee10-servlet:12.1.7")
testImplementation("org.eclipse.jetty:jetty-server:12.1.7")
val jerseyVersion = "4.0.2"
testImplementation("org.glassfish.jersey.containers:jersey-container-servlet:${jerseyVersion}")
testImplementation("org.glassfish.jersey.inject:jersey-hk2:${jerseyVersion}")
testImplementation("org.glassfish.jersey.media:jersey-media-json-jackson:${jerseyVersion}")
testImplementation("org.mockito:mockito-core:5.23.0")
testImplementation("org.slf4j:slf4j-simple:2.0.17")
testImplementation("org.wiremock:wiremock-jetty12:3.13.2")
}
tasks.test {
useJUnitPlatform()
}
signing {
useGpgCmd()
sign(publishing.publications)
}
mavenPublishing {
publishToMavenCentral(true)
signAllPublications()
pom {
name.set(project.name)
description.set("Dataplane Signaling SDK library")
url.set("https://github.com/eclipse-dataplane-core/dataplane-sdk-java")
licenses {
license {
name.set("The Apache License, Version 2.0")
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
developers {
developer {
name = "Dataplane Core Dev"
email = "dataplane-core-dev@eclipse.org"
}
}
scm {
url.set("https://github.com/eclipse-dataplane-core/dataplane-sdk-java")
connection.set("scm:git:git@github.com:eclipse-dataplane-core/dataplane-sdk-go.git")
}
}
}