test
This commit is contained in:
parent
40f0b496e6
commit
8a72f358c3
@ -50,8 +50,12 @@ javadoc {
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile("org.springframework.boot:spring-boot-starter-web"){
|
compile("org.springframework.boot:spring-boot-starter-web"){
|
||||||
exclude group:"org.springframework.boot", module: "spring-boot-starter-logging"
|
exclude group:"org.springframework.boot", module: "spring-boot-starter-logging"
|
||||||
|
exclude group: "org.springframework.boot", module :"spring-boot-starter-tomcat"
|
||||||
}
|
}
|
||||||
|
compile("org.springframework.boot:spring-boot-starter-undertow")
|
||||||
compile("org.springframework.boot:spring-boot-starter-log4j2")
|
compile("org.springframework.boot:spring-boot-starter-log4j2")
|
||||||
|
|
||||||
|
|
||||||
compile("com.sedmelluq:lavaplayer:1.3.10")
|
compile("com.sedmelluq:lavaplayer:1.3.10")
|
||||||
compile 'net.dv8tion:JDA:3.8.1_437'
|
compile 'net.dv8tion:JDA:3.8.1_437'
|
||||||
compile group: 'org.json', name: 'json', version: '20160810'
|
compile group: 'org.json', name: 'json', version: '20160810'
|
||||||
@ -69,6 +73,7 @@ dependencies {
|
|||||||
|
|
||||||
testCompile('org.springframework.boot:spring-boot-starter-test')
|
testCompile('org.springframework.boot:spring-boot-starter-test')
|
||||||
testCompile('com.jayway.jsonpath:json-path')
|
testCompile('com.jayway.jsonpath:json-path')
|
||||||
|
|
||||||
compile("org.springframework.boot:spring-boot-starter-thymeleaf") {
|
compile("org.springframework.boot:spring-boot-starter-thymeleaf") {
|
||||||
exclude group:"org.springframework.boot", module: "spring-boot-starter-logging"
|
exclude group:"org.springframework.boot", module: "spring-boot-starter-logging"
|
||||||
}
|
}
|
||||||
|
@ -3,4 +3,7 @@ spring.jpa.hibernate.ddl-auto=update
|
|||||||
spring.datasource.url=${DB_URL}
|
spring.datasource.url=${DB_URL}
|
||||||
spring.datasource.username=${DB_USER}
|
spring.datasource.username=${DB_USER}
|
||||||
spring.datasource.password=${DB_PWD}
|
spring.datasource.password=${DB_PWD}
|
||||||
spring.thymeleaf.cache=true
|
spring.thymeleaf.cache=true
|
||||||
|
server.compression.enabled=true
|
||||||
|
server.compression.mime-types=application/json,application/xml,text/html,text/xml,text/plain,application/javascript,text/css
|
||||||
|
server.http2.enabled=true
|
Loading…
Reference in New Issue
Block a user