aboutsummaryrefslogtreecommitdiff
path: root/juick-core/build.gradle
diff options
context:
space:
mode:
authorGravatar Alexander Alexeev2016-11-12 00:36:37 +0700
committerGravatar Vitaly Takmazov2016-11-12 11:14:48 +0300
commit5179f9417dc3a2ad1da45c4aafa82f6f646c61e8 (patch)
tree77628ee3544ada9c3259a51dad398fcbd6220a39 /juick-core/build.gradle
parent5a9bfa524dcd27f357a8838acb7f150660061ae6 (diff)
configuration updated: common dependences moved to core module
Diffstat (limited to 'juick-core/build.gradle')
-rw-r--r--juick-core/build.gradle9
1 files changed, 8 insertions, 1 deletions
diff --git a/juick-core/build.gradle b/juick-core/build.gradle
index 873b0495..e3a35e29 100644
--- a/juick-core/build.gradle
+++ b/juick-core/build.gradle
@@ -26,10 +26,17 @@ dependencies {
compile "org.slf4j:jul-to-slf4j:${slf4jVersion}"
compile 'org.apache.httpcomponents:httpclient:4.5.2'
compile 'org.apache.commons:commons-lang3:3.5'
+ compile 'org.apache.commons:commons-collections4:4.1'
+ compile 'commons-io:commons-io:2.5'
compile "org.springframework:spring-context:${springFrameworkVersion}"
compile "org.springframework:spring-jdbc:${springFrameworkVersion}"
compile 'org.apache.commons:commons-dbcp2:2.1.1'
compile 'org.json:json:20160810'
+ compile 'javax.inject:javax.inject:1'
}
-compileJava.options.encoding = 'UTF-8' \ No newline at end of file
+compileJava.options.encoding = 'UTF-8'
+
+configurations {
+ all*.exclude module: 'commons-logging'
+} \ No newline at end of file