JFronny
6805ff6b6f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Since that seems to be incompatible with manifold, that has been removed. Contains breaking changes!
26 lines
584 B
Plaintext
26 lines
584 B
Plaintext
plugins {
|
|
`java-library`
|
|
id("jf.maven-publish")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://maven.frohnmeyer-wds.de/artifacts")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":gson-compile-processor-core"))
|
|
implementation(project(":gson-compile-annotations"))
|
|
implementation("org.jetbrains:annotations:24.0.0")
|
|
implementation("io.gitlab.jfronny:commons:1.1-SNAPSHOT")
|
|
implementation("com.squareup:javapoet:1.13.0")
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|