22 lines
395 B
Plaintext
22 lines
395 B
Plaintext
import io.gitlab.jfronny.scripts.*
|
|
|
|
plugins {
|
|
id("commons.library")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":commons"))
|
|
implementation(project(":commons-serialize"))
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
groupId = "io.gitlab.jfronny"
|
|
artifactId = "commons-io"
|
|
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|