25 lines
406 B
Groovy
25 lines
406 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
|
}
|
|
|
|
group = 'tech.nevets'
|
|
version = '1.1.1'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.sparkjava:spark-core:2.9.4"
|
|
implementation "com.google.code.gson:gson:2.11.0"
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'tech.nevets.igformatter.Main'
|
|
)
|
|
}
|
|
}
|