diff options
author | Alexander Alexeev | 2016-11-10 23:43:19 +0700 |
---|---|---|
committer | Vitaly Takmazov | 2016-11-11 17:27:43 +0300 |
commit | bf42b1286472d6f66fb8e7b287abad867b3ee485 (patch) | |
tree | 9318207f992b20a11099b2178a0f5c40e47c6992 /juick-notifications | |
parent | 5fea6d5c67d11edca8919ad7e35c79c5a5588a3e (diff) |
configuration updated:
mysql jdbc driver updated to 5.1.40;
commons-logging is excluded from build
Diffstat (limited to 'juick-notifications')
-rw-r--r-- | juick-notifications/build.gradle | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/juick-notifications/build.gradle b/juick-notifications/build.gradle index b178758c..c61491a7 100644 --- a/juick-notifications/build.gradle +++ b/juick-notifications/build.gradle @@ -24,7 +24,7 @@ dependencies { compile 'org.apache.httpcomponents:httpclient:4.5.2' compile 'org.apache.commons:commons-dbcp2:2.1.1' compile 'com.mitchellbosecke:pebble-spring4:2.2.3' - providedRuntime 'mysql:mysql-connector-java:5.1.39' + providedRuntime 'mysql:mysql-connector-java:5.1.40' } compileJava.options.encoding = 'UTF-8' @@ -35,3 +35,7 @@ gretty { servletContainer = 'tomcat8' } +configurations { + all*.exclude module: 'commons-logging' +} + |