hotfix: hopefully fix bug in release pipeline

This commit is contained in:
Ryan Brink
2022-01-02 23:34:23 -05:00
parent c29567114d
commit f02f7ad211
2 changed files with 18 additions and 17 deletions

View File

@ -33,17 +33,19 @@ allprojects {
}
subprojects {
apply(plugin = "io.bkbn.sourdough.library")
if (this.name != "kompendium-playground") {
apply(plugin = "io.bkbn.sourdough.library")
configure<SourdoughLibraryExtension> {
githubOrg.set("bkbnio")
githubRepo.set("kompendium")
libraryName.set("Kompendium")
libraryDescription.set("A minimally invasive OpenAPI spec generator for Ktor")
licenseName.set("MIT License")
licenseUrl.set("https://mit-license.org")
developerId.set("bkbnio")
developerName.set("Ryan Brink")
developerEmail.set("admin@bkbn.io")
configure<SourdoughLibraryExtension> {
githubOrg.set("bkbnio")
githubRepo.set("kompendium")
libraryName.set("Kompendium")
libraryDescription.set("A minimally invasive OpenAPI spec generator for Ktor")
licenseName.set("MIT License")
licenseUrl.set("https://mit-license.org")
developerId.set("bkbnio")
developerName.set("Ryan Brink")
developerEmail.set("admin@bkbn.io")
}
}
}