java-commons/commons-gson/build.gradle.kts
JFronny e62d93f145
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
chore: bump gson-comments
2023-09-19 20:20:20 +02:00

30 lines
733 B
Plaintext

import io.gitlab.jfronny.scripts.*
plugins {
id("commons.library")
}
dependencies {
api("io.gitlab.jfronny:gson:2.10.3-SNAPSHOT")
implementation(project(":"))
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.3")
}
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "io.gitlab.jfronny"
artifactId = "commons-gson"
from(components["java"])
}
}
}
tasks.javadoc {
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", project(":"))
//TODO link gson javadoc (harder to generate than expected)
}