ludum_dare_timer_bot/build.gradle

30 lines
563 B
Groovy
Raw Normal View History

2020-02-13 06:49:27 +00:00
plugins {
id 'java'
id 'application'
}
group = 'com.gnarly'
version = '1.0.0'
mainClassName = 'com.gnarly.ld.Main'
sourceCompatibility = 1.12
2020-02-13 23:07:48 +00:00
task fatJar(type: Jar) {
manifest {
attributes 'Main-Class': 'com.gnarly.ld.Main'
}
baseName = project.name + '-all'
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
2020-02-13 06:49:27 +00:00
repositories {
jcenter()
}
dependencies {
2020-02-13 23:07:48 +00:00
compile ('net.dv8tion:JDA:3.8.3_464') {
exclude module: 'opus-java'
}
2020-02-13 06:49:27 +00:00
}