25 lines
461 B
Groovy
25 lines
461 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.github.johnrengelman.shadow' version '5.2.0'
|
|
}
|
|
|
|
group 'tech.nevets'
|
|
version '1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'io.javalin:javalin:4.6.0'
|
|
implementation 'org.slf4j:slf4j-simple:1.7.36'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'
|
|
}
|
|
|
|
shadowJar {
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'tech.nevets.jaml.JAML'
|
|
)
|
|
}
|
|
} |