diff options
author | Alexander Alexeev | 2016-11-13 21:21:45 +0700 |
---|---|---|
committer | Alexander Alexeev | 2016-11-13 21:21:45 +0700 |
commit | 6ba7eb5fe1384ec87cdd0031d185a9b26512a016 (patch) | |
tree | 1448ba6c8dda4302e3ad847cb085d49b8b054867 /juick-core/build.gradle | |
parent | b75258ee5ed84510579050b5dba1edb904a09dfa (diff) |
server core module
Diffstat (limited to 'juick-core/build.gradle')
-rw-r--r-- | juick-core/build.gradle | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/juick-core/build.gradle b/juick-core/build.gradle index e3a35e29..59cbf6c9 100644 --- a/juick-core/build.gradle +++ b/juick-core/build.gradle @@ -5,34 +5,17 @@ repositories { mavenCentral() } -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') - compile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}" - compile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}" - compile "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}" - compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${jacksonVersion}" - compile "ch.qos.logback:logback-classic:${logbackVersion}" - compile "ch.qos.logback:logback-core:${logbackVersion}" - compile "ch.qos.logback:logback-access:${logbackVersion}" compile "org.slf4j:slf4j-api:${slf4jVersion}" - compile "org.slf4j:jcl-over-slf4j:${slf4jVersion}" - compile "org.slf4j:log4j-over-slf4j:${slf4jVersion}" - 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' |