This commit is contained in:
Ryan Brink
2021-04-14 19:50:46 -04:00
committed by GitHub
parent 6eebaf15ea
commit 98a7a0a369
5 changed files with 18 additions and 2 deletions

View File

@ -13,6 +13,10 @@ dependencies {
testImplementation("io.ktor:ktor-server-test-host:1.5.3")
}
java {
withSourcesJar()
}
publishing {
repositories {
maven {
@ -27,6 +31,7 @@ publishing {
publications {
create<MavenPublication>("kompendium") {
from(components["kotlin"])
artifact(tasks.sourcesJar)
}
}
}