Skip to content

Commit

Permalink
updating build config
Browse files Browse the repository at this point in the history
  • Loading branch information
jkyberneees committed Nov 29, 2024
1 parent e9616eb commit eab2d4e
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,30 @@ publishing {
artifactId = "core"
version = version

// Exclude the samples package
artifact(tasks["sourcesJar"])
artifact(tasks["javadocJar"])

pom {
withXml {
asNode().appendNode("build").appendNode("resources").appendNode("excludes")
.appendNode("exclude", "samples/**")
name.set("Realtime Pub/Sub Client")
description.set("A Java client for Realtime Pub/Sub")
url.set("https://github.com/BackendStack21/realtime-pubsub-client-java")
licenses {
license {
name.set("MIT License")
url.set("https://opensource.org/licenses/MIT")
}
}
developers {
developer {
id.set("BackendStack21")
name.set("21no.de")
email.set("contact@21no.de")
}
}
scm {
connection.set("scm:git:https://github.com/BackendStack21/realtime-pubsub-client-java.git")
developerConnection.set("scm:git:ssh://git@github.com:BackendStack21/realtime-pubsub-client-java.git")
url.set("https://github.com/BackendStack21/realtime-pubsub-client-java")
}
}
}
Expand Down

0 comments on commit eab2d4e

Please sign in to comment.