28 lines
579 B
Plaintext
28 lines
579 B
Plaintext
|
import io.gitlab.jfronny.scripts.*
|
||
|
|
||
|
plugins {
|
||
|
commons.library
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(projects.commons)
|
||
|
|
||
|
testImplementation(libs.junit.jupiter.api)
|
||
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
||
|
}
|
||
|
|
||
|
publishing {
|
||
|
publications {
|
||
|
create<MavenPublication>("maven") {
|
||
|
groupId = "io.gitlab.jfronny"
|
||
|
artifactId = "muscript-ast"
|
||
|
|
||
|
from(components["java"])
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.javadoc {
|
||
|
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", projects.commons)
|
||
|
}
|