Woodpecker-Include/build.gradle.kts

35 lines
892 B
Plaintext
Raw Permalink Normal View History

2022-10-20 21:57:43 +02:00
plugins {
2022-11-02 23:01:01 +01:00
`java-library`
2022-10-20 21:57:43 +02:00
application
id("com.github.johnrengelman.shadow") version "7.1.2"
}
group = "io.gitlab.jfronny"
version = "1.0-SNAPSHOT"
application {
mainClass.set("io.gitlab.jfronny.woodpecker.include.Main")
}
repositories {
mavenCentral()
2022-11-02 23:01:01 +01:00
maven("https://maven.frohnmeyer-wds.de/artifacts")
2022-10-20 21:57:43 +02:00
}
dependencies {
implementation("net.freeutils:jlhttp:2.6")
2022-11-02 23:01:01 +01:00
implementation("io.gitlab.jfronny:commons:2022.11.2+21-36-56")
implementation("io.gitlab.jfronny:commons-gson:2022.11.2+21-36-56")
api("io.gitlab.jfronny.gson:gson-compile-core:1.0-SNAPSHOT")
compileOnly("io.gitlab.jfronny.gson:gson-compile-annotations:1.0-SNAPSHOT")
annotationProcessor("io.gitlab.jfronny.gson:gson-compile-processor:1.0-SNAPSHOT")
2022-10-20 21:57:43 +02:00
}
tasks.runShadow {
args("8002")
}
2022-11-02 23:01:01 +01:00
tasks.withType<JavaCompile> {
options.compilerArgs.add("-AgsonCompileNoReflect")
}