gson-compile/gson-compile-annotations/build.gradle.kts

20 lines
245 B
Plaintext
Raw Permalink Normal View History

2022-10-31 20:52:48 +01:00
plugins {
2022-11-01 18:14:48 +01:00
`java-library`
2022-11-01 18:09:26 +01:00
id("jf.maven-publish")
2022-10-31 20:52:48 +01:00
}
repositories {
mavenCentral()
}
dependencies {
}
2022-11-01 18:14:48 +01:00
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}