1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-11 10:09:38 +02:00

Move gradle subproject configuration into the subproject

This commit is contained in:
Florian Schmaus 2014-03-08 11:47:40 +01:00
parent 45226080e6
commit 93eea8ab8d
12 changed files with 161 additions and 195 deletions

11
jingle/build.gradle Normal file
View file

@ -0,0 +1,11 @@
description = """\
Smack Jingle API.
Warning: This API is beta, outdated and currenlty unmaintained."""
dependencies {
compile project(':core')
compile project(':extensions')
compile 'javax.media:jmf:2.1.1e'
compile files('libs/jspeex-0.9.7-jfcom.jar', 'libs/jstun.jar', 'libs/Speex.jar')
testCompile project(':core').sourceSets.test.runtimeClasspath
}