17 lines
274 B
Plaintext
17 lines
274 B
Plaintext
plugins {
|
|
id("commons.library")
|
|
}
|
|
|
|
version = "1.2-SNAPSHOT"
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
groupId = "io.gitlab.jfronny"
|
|
artifactId = "commons"
|
|
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|