22 lines
437 B
Plaintext
22 lines
437 B
Plaintext
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"])
|
|
}
|
|
}
|
|
}
|