java-commons/commons-unsafe/build.gradle.kts

19 lines
304 B
Plaintext
Raw Normal View History

2023-05-05 17:48:31 +02:00
plugins {
commons.library
2023-05-05 17:48:31 +02:00
}
dependencies {
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"])
}
}
}