1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-09-09 10:19:41 +02:00

Use mathematical range syntax for dependencies

In dd84d53bbc the usage of dynamic
dependencies was removed because OSS Sonatype would not longer allow
them, i.e. the '1.2.+' notation, on release artifacts. But they allow
the mathematical range notation '(1.2,1.3]', therefore we use this now.
This commit is contained in:
Florian Schmaus 2014-12-17 16:23:24 +01:00
parent add4ff5b5a
commit 31c53f094c
5 changed files with 5 additions and 5 deletions

View file

@ -5,6 +5,6 @@ Connect your favourite slf4j backend of choice to get output inside of it"""
dependencies {
compile project(':smack-core')
compile 'org.slf4j:slf4j-api:1.7.7'
compile 'org.slf4j:slf4j-api:(1.7,1.8]'
testCompile project(':smack-core').sourceSets.test.runtimeClasspath
}