NginxInstallerBackend/build.gradle
2023-12-20 07:36:05 -06:00

24 lines
412 B
Groovy

plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group = 'tech.nevets'
version = '0.1.0'
repositories {
mavenCentral()
}
dependencies {
implementation("com.sparkjava:spark-core:2.9.4")
implementation("com.google.code.gson:gson:2.10.1")
}
jar {
manifest {
attributes (
'Main-Class' : 'tech.nevets.ngxinstaller.Server'
)
}
}