31 lines
770 B
Plaintext
31 lines
770 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
id("io.bkbn.sourdough.library.jvm") version "0.5.4"
|
|
id("io.gitlab.arturbosch.detekt") version "1.19.0"
|
|
id("com.adarshr.test-logger") version "3.1.0"
|
|
id("org.jetbrains.dokka")
|
|
id("maven-publish")
|
|
id("java-library")
|
|
id("signing")
|
|
}
|
|
|
|
sourdough {
|
|
githubOrg.set("bkbnio")
|
|
githubRepo.set("kompendium")
|
|
libraryName.set("Kompendium Annotations")
|
|
libraryDescription.set("A set of annotations used by Kompendium to generate OpenAPI Specifications")
|
|
licenseName.set("MIT License")
|
|
licenseUrl.set("https://mit-license.org")
|
|
developerId.set("unredundant")
|
|
developerName.set("Ryan Brink")
|
|
developerEmail.set("admin@bkbn.io")
|
|
}
|
|
|
|
testing {
|
|
suites {
|
|
named("test", JvmTestSuite::class) {
|
|
useJUnitJupiter()
|
|
}
|
|
}
|
|
}
|