2022-12-13 23:04:41 +01:00
|
|
|
plugins {
|
|
|
|
`java-library`
|
|
|
|
id("jf.maven-publish")
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://maven.frohnmeyer-wds.de/artifacts")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-01-21 11:29:08 +01:00
|
|
|
implementation("org.jetbrains:annotations:24.0.0")
|
2023-01-21 15:01:54 +01:00
|
|
|
implementation("io.gitlab.jfronny:commons:1.1-SNAPSHOT")
|
2022-12-13 23:04:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
create<MavenPublication>("maven") {
|
|
|
|
from(components["java"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|