java-commons/commons-serialize-gson/build.gradle.kts
JFronny 8aebf179d4
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
BREAKING: modularize
2023-09-21 21:08:40 +02:00

32 lines
947 B
Plaintext

import io.gitlab.jfronny.scripts.*
plugins {
id("commons.library")
}
dependencies {
api("io.gitlab.jfronny:gson:2.10.3-SNAPSHOT")
implementation(project(":commons"))
implementation(project(":commons-serialize"))
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-serialize-gson"
from(components["java"])
}
}
}
tasks.javadoc {
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", project(":commons"))
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", project(":commons-serialize"))
//TODO link gson javadoc (harder to generate than expected)
}