2023-05-05 17:48:31 +02:00
|
|
|
plugins {
|
2024-03-09 12:37:38 +01:00
|
|
|
commons.library
|
2023-05-05 17:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-03-09 12:37:38 +01:00
|
|
|
implementation(projects.commons)
|
2023-05-05 17:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
create<MavenPublication>("maven") {
|
|
|
|
groupId = "io.gitlab.jfronny"
|
2023-09-21 21:08:40 +02:00
|
|
|
artifactId = "commons-unsafe"
|
2023-05-05 17:48:31 +02:00
|
|
|
|
|
|
|
from(components["java"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|