-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(publish): Fixed maven publishing to maven central
Signed-off-by: Frederik Bertling <[email protected]>
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,4 +83,32 @@ tasks.named<Test>("jvmTest") { | |
mavenPublishing { | ||
publishToMavenCentral(SonatypeHost.DEFAULT, true) | ||
signAllPublications() | ||
|
||
coordinates("de.frederikbertling.kosc", "core", "0.1.0") | ||
|
||
pom { | ||
name.set("kOSC core library") | ||
description.set("OSC implementation for kotlin multiplatform") | ||
inceptionYear.set("2024") | ||
url.set("https://github.com/burtan/kosc/") | ||
licenses { | ||
license { | ||
name.set("The Apache License, Version 2.0") | ||
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") | ||
distribution.set("http://www.apache.org/licenses/LICENSE-2.0.txt") | ||
} | ||
} | ||
developers { | ||
developer { | ||
id.set("burtan") | ||
name.set("Frederik Bertling") | ||
url.set("https://github.com/burtan/") | ||
} | ||
} | ||
scm { | ||
url.set("https://github.com/burtan/kosc/") | ||
connection.set("scm:git:git://github.com/burtan/kosc.git") | ||
developerConnection.set("scm:git:ssh://[email protected]/burtan/kosc.git") | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,4 +86,32 @@ mavenPublishing { | |
publishToMavenCentral(SonatypeHost.DEFAULT, true) | ||
|
||
signAllPublications() | ||
|
||
coordinates("de.frederikbertling.kosc", "udp", "0.1.0") | ||
|
||
pom { | ||
name.set("kOSC UDP server and client implementation") | ||
description.set("OSC over UDP implementation for kotlin multiplatform") | ||
inceptionYear.set("2024") | ||
url.set("https://github.com/burtan/kosc/") | ||
licenses { | ||
license { | ||
name.set("The Apache License, Version 2.0") | ||
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") | ||
distribution.set("http://www.apache.org/licenses/LICENSE-2.0.txt") | ||
} | ||
} | ||
developers { | ||
developer { | ||
id.set("burtan") | ||
name.set("Frederik Bertling") | ||
url.set("https://github.com/burtan/") | ||
} | ||
} | ||
scm { | ||
url.set("https://github.com/burtan/kosc/") | ||
connection.set("scm:git:git://github.com/burtan/kosc.git") | ||
developerConnection.set("scm:git:ssh://[email protected]/burtan/kosc.git") | ||
} | ||
} | ||
} |