28 lines
615 B
Plaintext
28 lines
615 B
Plaintext
import io.gitlab.jfronny.scripts.*
|
|
|
|
plugins {
|
|
id("commons.library")
|
|
}
|
|
|
|
dependencies {
|
|
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 = "muscript"
|
|
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.javadoc {
|
|
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", project(":"))
|
|
}
|