gson-compile/gson-compile-processor/build.gradle.kts
JFronny 58b23974b1
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Set up artifacts
2022-11-01 18:14:48 +01:00

28 lines
607 B
Plaintext

plugins {
`java-library`
id("jf.maven-publish")
}
group = "io.gitlab.jfronny.gson"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://gitlab.com/api/v4/projects/35745143/packages/maven")
}
dependencies {
implementation(project(":gson-compile-annotations"))
implementation("org.jetbrains:annotations:23.0.0")
implementation("io.gitlab.jfronny:commons:2022.10.22+20-29-33")
implementation("com.squareup:javapoet:1.13.0")
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}