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

[gradle] Do not use deprecated 'compile' directive

This commit is contained in:
Florian Schmaus 2021-04-14 19:24:30 +02:00
parent 6b3e41d591
commit fbddd074bc
26 changed files with 60 additions and 60 deletions

View file

@ -3,9 +3,9 @@ Smack API for XEP-0384: OMEMO Encryption
"""
dependencies {
compile project(":smack-im")
compile project(":smack-extensions")
compile project(":smack-experimental")
api project(":smack-im")
api project(":smack-extensions")
api project(":smack-experimental")
testFixturesApi(testFixtures(project(":smack-core")))
}