diff options
author | Alexander Alexeev | 2016-11-11 01:28:17 +0700 |
---|---|---|
committer | Vitaly Takmazov | 2016-11-11 17:27:57 +0300 |
commit | 9077e9f21d785a6507aeb79d04faca2107aa80e4 (patch) | |
tree | f64c02dc61a544e3015178eff8775054bc9e4625 | |
parent | ad4b638dbe963b5c2d3623f537acea397b4deb00 (diff) |
dependences corrections: spring context and dbcp are added
-rw-r--r-- | juick-core/build.gradle | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/juick-core/build.gradle b/juick-core/build.gradle index 30802dad..873b0495 100644 --- a/juick-core/build.gradle +++ b/juick-core/build.gradle @@ -8,6 +8,7 @@ repositories { def jacksonVersion = '2.8.4' def logbackVersion = '1.1.7' def slf4jVersion = '1.7.21' +def springFrameworkVersion = '4.3.4.RELEASE' dependencies { compile project(':deps:com.juick.xmpp') @@ -25,7 +26,9 @@ 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.springframework:spring-jdbc:4.3.4.RELEASE" + 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' } |