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

19 lines
313 B
Plaintext
Raw Normal View History

2023-05-05 17:48:31 +02:00
plugins {
id("commons.library")
}
dependencies {
2023-09-21 21:08:40 +02:00
implementation(project(":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"])
}
}
}