25 lines
504 B
Plaintext
25 lines
504 B
Plaintext
|
import io.gitlab.jfronny.scripts.*
|
||
|
|
||
|
plugins {
|
||
|
commons.library
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(projects.commons)
|
||
|
}
|
||
|
|
||
|
publishing {
|
||
|
publications {
|
||
|
create<MavenPublication>("maven") {
|
||
|
groupId = "io.gitlab.jfronny"
|
||
|
artifactId = "commons-serialize-generator-core"
|
||
|
|
||
|
from(components["java"])
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.javadoc {
|
||
|
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", projects.commons)
|
||
|
}
|