2023-09-21 19:08:14 +02:00
|
|
|
import io.gitlab.jfronny.scripts.*
|
|
|
|
|
|
|
|
plugins {
|
2024-03-09 12:37:38 +01:00
|
|
|
commons.library
|
2023-09-21 19:08:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
create<MavenPublication>("maven") {
|
|
|
|
groupId = "io.gitlab.jfronny"
|
2023-09-21 21:08:40 +02:00
|
|
|
artifactId = "commons"
|
2023-09-21 19:08:14 +02:00
|
|
|
|
|
|
|
from(components["java"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|