1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-11 01:59:38 +02:00
Smack/smack-bosh/build.gradle
Florian Schmaus 81039d2b16 Use mathematical range syntax for dependencies
OSS Sonatype does not longer allow the'1.2.+' notation, on release
artifacts. But they allow the mathematical range notation '[1.2,1.3)',
therefore we use this now.
2015-02-20 09:11:39 +01:00

14 lines
271 B
Groovy

description = """\
Smack BOSH API.
This API is considered beta quality."""
repositories {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
dependencies {
compile project(':smack-core')
compile 'org.igniterealtime.jbosh:jbosh:[0.8,0.9)'
}