aboutsummaryrefslogtreecommitdiff
path: root/juick-xmpp/build.gradle
blob: 5462a8794e4b9538635760809f7d8926074f11b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'org.akhikhl.gretty'
apply plugin: 'com.github.ben-manes.versions'

def springFrameworkVersion = '4.3.4.RELEASE'
def jacksonVersion = '2.8.5'
def slf4jVersion = '1.7.21'

dependencies {
    compile project(':juick-server')
    compile 'com.github.juick:com.juick.xmpp:dbf603cfff'
    compile "org.slf4j:slf4j-api:${slf4jVersion}"
    compile "org.springframework:spring-webmvc:${springFrameworkVersion}"
    compile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
    compile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
    compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${jacksonVersion}"
    compile 'javax.inject:javax.inject:1'
    compile 'org.apache.httpcomponents:httpclient:4.5.2'
    compile 'org.apache.commons:commons-dbcp2:2.1.1'
    compile 'com.mitchellbosecke:pebble-spring4:2.3.0'
    compile 'net.jodah:failsafe:1.0.0'
    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'
}