This commit is contained in:
Sebastien 2018-12-04 20:00:20 +02:00
parent 40f0b496e6
commit 8a72f358c3
2 changed files with 9 additions and 1 deletions

View File

@ -50,8 +50,12 @@ javadoc {
dependencies {
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-tomcat"
}
compile("org.springframework.boot:spring-boot-starter-undertow")
compile("org.springframework.boot:spring-boot-starter-log4j2")
compile("com.sedmelluq:lavaplayer:1.3.10")
compile 'net.dv8tion:JDA:3.8.1_437'
compile group: 'org.json', name: 'json', version: '20160810'
@ -69,6 +73,7 @@ dependencies {
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile('com.jayway.jsonpath:json-path')
compile("org.springframework.boot:spring-boot-starter-thymeleaf") {
exclude group:"org.springframework.boot", module: "spring-boot-starter-logging"
}

View File

@ -3,4 +3,7 @@ spring.jpa.hibernate.ddl-auto=update
spring.datasource.url=${DB_URL}
spring.datasource.username=${DB_USER}
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