blob: 55d31c429acc664f348be3e4820fa4427b5303cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
apply plugin: 'war'
sourceCompatibility = 1.8
dependencies {
compile project(':juick-core')
providedCompile "org.apache.commons:commons-lang3:3.7"
providedCompile "org.apache.commons:commons-collections4:4.1"
providedCompile "commons-io:commons-io:2.6"
compile "rocks.xmpp:xmpp-core-client:0.7.5"
compile "rocks.xmpp:xmpp-extensions-client:0.7.5"
compile "javax.inject:javax.inject:1"
testCompile("org.springframework.boot:spring-boot-starter-test")
}
|