2023-08-25 16:24:28 +02:00
|
|
|
import io.gitlab.jfronny.scripts.*
|
|
|
|
|
|
|
|
plugins {
|
2024-03-09 12:37:38 +01:00
|
|
|
commons.library
|
2023-08-25 16:24:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-04-12 21:19:36 +02:00
|
|
|
implementation(projects.commons)
|
2024-04-07 17:25:27 +02:00
|
|
|
implementation(projects.muscriptDataAdditional)
|
2024-04-12 21:19:36 +02:00
|
|
|
implementation(projects.commonsSerializeJson)
|
|
|
|
implementation(projects.commonsSerializeDatabind)
|
2023-08-25 16:24:28 +02:00
|
|
|
|
2024-03-09 12:37:38 +01:00
|
|
|
testImplementation(libs.junit.jupiter.api)
|
2024-04-07 17:25:27 +02:00
|
|
|
testImplementation(projects.muscriptParser)
|
|
|
|
testImplementation(projects.muscriptRuntime)
|
2024-03-09 12:37:38 +01:00
|
|
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
2023-08-25 16:24:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
create<MavenPublication>("maven") {
|
|
|
|
groupId = "io.gitlab.jfronny"
|
2024-04-12 21:19:36 +02:00
|
|
|
artifactId = "muscript-json"
|
2023-08-25 16:24:28 +02:00
|
|
|
|
|
|
|
from(components["java"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.javadoc {
|
2024-03-09 12:37:38 +01:00
|
|
|
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", projects.commons)
|
|
|
|
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons-serialize/$version/raw", projects.commonsSerialize)
|
2024-04-12 21:19:36 +02:00
|
|
|
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons-serialize-json/$version/raw", projects.commonsSerializeJson)
|
|
|
|
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons-serialize-databind/$version/raw", projects.commonsSerializeJson)
|
2024-04-07 17:25:27 +02:00
|
|
|
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/muscript-data-dynamic/$version/raw", projects.muscriptDataDynamic)
|
|
|
|
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/muscript-data-additional/$version/raw", projects.muscriptDataAdditional)
|
2023-08-25 16:24:28 +02:00
|
|
|
}
|