30 lines
716 B
Plaintext
30 lines
716 B
Plaintext
import io.gitlab.jfronny.scripts.*
|
|
|
|
plugins {
|
|
id("commons.library")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.slf4j:slf4j-api:2.0.7")
|
|
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-slf4j"
|
|
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.javadoc {
|
|
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", project(":"))
|
|
opts.links("https://www.slf4j.org/apidocs")
|
|
}
|