JFronny
a67d1dbbd6
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
The only reason it needed to be separate was logging during ultra early init in Minecraft. I can figure out something else for that.
27 lines
683 B
Plaintext
27 lines
683 B
Plaintext
import io.gitlab.jfronny.scripts.*
|
|
|
|
plugins {
|
|
commons.library
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.commons)
|
|
implementation(projects.commonsSerialize)
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
groupId = "io.gitlab.jfronny"
|
|
artifactId = "commons-http-client"
|
|
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.javadoc {
|
|
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)
|
|
}
|