BefatorWeb/build.gradle
2025-11-10 20:06:06 +01:00

42 lines
935 B
Groovy

plugins {
id 'java'
id 'application'
id("com.gradleup.shadow") version "9.0.0-rc1"
}
group = 'de.bommels05'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation("org.slf4j:slf4j-simple:2.0.12")
implementation("io.javalin:javalin:6.7.0")
implementation("com.google.code.gson:gson:2.10.1")
implementation("com.github.ben-manes.caffeine:caffeine:3.2.2")
implementation("org.jsoup:jsoup:1.21.1")
implementation("it.uniroma1.dis.wsngroup.gexf4j:gexf4j:1.0.0")
implementation("de.bommels05:DBLib:1.0-SNAPSHOT")
}
application {
mainClass = 'de.bommels05.befatorweb.BefatorWeb'
}
shadowJar {
manifest {
attributes 'Main-Class': 'de.bommels05.befatorweb.BefatorWeb'
}
}
test {
useJUnitPlatform()
}