40 lines
962 B
Groovy
40 lines
962 B
Groovy
|
buildscript {
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.9.RELEASE")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'java'
|
||
|
apply plugin: 'eclipse'
|
||
|
apply plugin: 'idea'
|
||
|
apply plugin: 'org.springframework.boot'
|
||
|
|
||
|
jar {
|
||
|
baseName = 'DiscordBot'
|
||
|
version = '0.1.0'
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
sourceCompatibility = 1.8
|
||
|
targetCompatibility = 1.8
|
||
|
|
||
|
dependencies {
|
||
|
compile("org.springframework.boot:spring-boot-starter-web"){
|
||
|
exclude group:"org.springframework.boot", module: "spring-boot-starter-logging"
|
||
|
}
|
||
|
compile("org.springframework.boot:spring-boot-starter-log4j2")
|
||
|
compile("com.sedmelluq:lavaplayer:1.2.45")
|
||
|
compile 'net.dv8tion:JDA:3.3.1_303'
|
||
|
compile group: 'org.json', name: 'json', version: '20160810'
|
||
|
testCompile('org.springframework.boot:spring-boot-starter-test')
|
||
|
testCompile('com.jayway.jsonpath:json-path')
|
||
|
}
|
||
|
|