java-commons/commons-gson/build.gradle.kts

30 lines
706 B
Plaintext
Raw Normal View History

2023-02-23 14:31:06 +01:00
import io.gitlab.jfronny.scripts.*
2022-11-01 18:55:17 +01:00
plugins {
id("commons.library")
}
dependencies {
2023-01-21 14:35:36 +01:00
api("io.gitlab.jfronny:gson:2.10.2-SNAPSHOT")
2022-11-01 18:55:17 +01:00
implementation(project(":"))
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0")
}
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "io.gitlab.jfronny"
artifactId = "commons-gson"
2022-12-29 16:49:38 +01:00
from(components["java"])
2022-11-01 18:55:17 +01:00
}
}
}
2023-02-23 14:31:06 +01:00
tasks.javadoc {
linksOffline("https://pages.frohnmeyer-wds.de/Johannes/java-commons/commons", project(":"))
//TODO link gson javadoc (harder to generate than expected)
}