aboutsummaryrefslogtreecommitdiff
path: root/juick-notifications/build.gradle
blob: 1a054cf76a6e7dcaba77a3a7e67a5536eaa7ca12 (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
38
39
40
41
42
43
44
45
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'org.akhikhl.gretty'
apply plugin: 'com.github.ben-manes.versions'

dependencies {
    compile project(':juick-core')
    compile 'com.ganyo:gcm-server:1.1.0'
    compile 'com.notnoop.apns:apns:1.0.0.Beta6'
    compile "org.springframework:spring-webmvc:${rootProject.springFrameworkVersion}"
    compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${rootProject.jacksonVersion}"

    compile "javax.inject:javax.inject:1"

    compile "ch.qos.logback:logback-classic:${rootProject.logbackVersion}"
    compile "ch.qos.logback:logback-core:${rootProject.logbackVersion}"
    compile "ch.qos.logback:logback-access:${rootProject.logbackVersion}"

    compile "org.slf4j:slf4j-api:${rootProject.slf4jVersion}"
    compile "org.slf4j:jcl-over-slf4j:${rootProject.slf4jVersion}"
    compile "org.slf4j:log4j-over-slf4j:${rootProject.slf4jVersion}"
    compile "org.slf4j:jul-to-slf4j:${rootProject.slf4jVersion}"

    compile "org.apache.httpcomponents:httpclient:4.5.3"
    compile "org.apache.commons:commons-lang3:3.5"
    compile "rocks.xmpp:xmpp-core-client:0.7.3"
    compile "rocks.xmpp:xmpp-extensions-client:0.7.3"

    testCompile "junit:junit:${rootProject.junitVersion}"
    testCompile "org.hamcrest:hamcrest-all:${rootProject.hamcrestVersion}"
    testCompile "org.mockito:mockito-core:${rootProject.mockitoVersion}"
}

compileJava.options.encoding = 'UTF-8'

gretty {
    httpPort = 8080
    contextPath = ''
    servletContainer = 'tomcat8'
}

configurations {
    all*.exclude module: 'commons-logging'
}