Skip to content

Commit eab2d4e

Browse files
committed
updating build config
1 parent e9616eb commit eab2d4e

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

build.gradle.kts

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,30 @@ publishing {
7676
artifactId = "core"
7777
version = version
7878

79-
// Exclude the samples package
79+
artifact(tasks["sourcesJar"])
80+
artifact(tasks["javadocJar"])
81+
8082
pom {
81-
withXml {
82-
asNode().appendNode("build").appendNode("resources").appendNode("excludes")
83-
.appendNode("exclude", "samples/**")
83+
name.set("Realtime Pub/Sub Client")
84+
description.set("A Java client for Realtime Pub/Sub")
85+
url.set("https://github.com/BackendStack21/realtime-pubsub-client-java")
86+
licenses {
87+
license {
88+
name.set("MIT License")
89+
url.set("https://opensource.org/licenses/MIT")
90+
}
91+
}
92+
developers {
93+
developer {
94+
id.set("BackendStack21")
95+
name.set("21no.de")
96+
email.set("[email protected]")
97+
}
98+
}
99+
scm {
100+
connection.set("scm:git:https://github.com/BackendStack21/realtime-pubsub-client-java.git")
101+
developerConnection.set("scm:git:ssh://[email protected]:BackendStack21/realtime-pubsub-client-java.git")
102+
url.set("https://github.com/BackendStack21/realtime-pubsub-client-java")
84103
}
85104
}
86105
}

0 commit comments

Comments
 (0)