aboutsummaryrefslogtreecommitdiff
path: root/juick-api/build.gradle
diff options
context:
space:
mode:
authorGravatar Alexander Alexeev2016-11-10 23:43:19 +0700
committerGravatar Vitaly Takmazov2016-11-11 17:27:43 +0300
commitbf42b1286472d6f66fb8e7b287abad867b3ee485 (patch)
tree9318207f992b20a11099b2178a0f5c40e47c6992 /juick-api/build.gradle
parent5fea6d5c67d11edca8919ad7e35c79c5a5588a3e (diff)
configuration updated:
mysql jdbc driver updated to 5.1.40; commons-logging is excluded from build
Diffstat (limited to 'juick-api/build.gradle')
-rw-r--r--juick-api/build.gradle8
1 files changed, 7 insertions, 1 deletions
diff --git a/juick-api/build.gradle b/juick-api/build.gradle
index 8bb9d227..98a5fc7c 100644
--- a/juick-api/build.gradle
+++ b/juick-api/build.gradle
@@ -32,11 +32,17 @@ dependencies {
compile 'org.apache.commons:commons-dbcp2:2.1.1'
compile 'net.coobird:thumbnailator:0.4.8'
compile 'org.slf4j:slf4j-api:${slf4jVersion}'
- providedRuntime 'mysql:mysql-connector-java:5.1.39'
+ providedRuntime 'mysql:mysql-connector-java:5.1.40'
}
+
compileJava.options.encoding = 'UTF-8'
+
gretty {
httpPort = 8080
contextPath = '/'
servletContainer = 'tomcat8'
}
+
+configurations {
+ all*.exclude module: 'commons-logging'
+}