1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 17:19:39 +02:00

gradle: Use project(':foo') intead of project(path: ':foo') when possible

This commit is contained in:
Florian Schmaus 2019-09-01 17:09:42 +02:00
parent 5b23b9a6ae
commit ac77c969ac
6 changed files with 6 additions and 6 deletions

View file

@ -4,6 +4,6 @@ Use dnsjava for DNS SRV lookups. For platforms that don't provide the
javax.naming API (e.g. Android)."""
dependencies {
compile project(path: ':smack-core')
compile project(':smack-core')
compile 'dnsjava:dnsjava:[2.1,2.2)'
}