1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-16 13:27:03 -05:00
chhoto-url/build.gradle

22 lines
382 B
Groovy
Raw Normal View History

2020-02-13 16:52:33 -06:00
plugins {
// Apply the java plugin to add support for Java
id 'java'
// Apply the application plugin to add support for building a CLI application.
id 'application'
}
repositories {
jcenter()
}
dependencies {
compile "com.sparkjava:spark-core:2.8.0"
2020-02-14 11:40:36 -06:00
compile 'org.slf4j:slf4j-simple:1.7.21'
2020-02-13 16:52:33 -06:00
}
application {
mainClassName = 'tk.draganczuk.url.App'
}