java-commons/commons-logging-slf4j/build.gradle.kts

31 lines
786 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-06-09 14:31:18 +02:00
implementation("org.slf4j:slf4j-api:2.0.7")
implementation(project(":commons"))
2023-09-21 21:08:40 +02:00
implementation(project(":commons-logging"))
2022-11-01 18:55:17 +01:00
2023-06-09 14:31:18 +02:00
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.3")
2022-11-01 18:55:17 +01:00
}
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "io.gitlab.jfronny"
2023-09-21 21:08:40 +02:00
artifactId = "commons-logging-slf4j"
2022-11-01 18:55:17 +01:00
from(components["java"])
}
}
}
2023-02-23 14:31:06 +01:00
tasks.javadoc {
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", project(":commons"))
2023-02-23 14:31:06 +01:00
opts.links("https://www.slf4j.org/apidocs")
}