17 lines
285 B
Groovy
17 lines
285 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
|
}
|
|
|
|
group = 'tech.nevets'
|
|
version = '1.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.sparkjava:spark-core:2.9.4"
|
|
implementation "com.google.code.gson:gson:2.11.0"
|
|
}
|