build: filter jitpack to only com.github.ibotpeaches.* (#2953)

This commit is contained in:
Connor Tumbleson 2022-11-24 06:50:50 -05:00 committed by GitHub
parent 67a936f1c7
commit c7733c3773
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,12 @@ allprojects {
// Obtain baksmali/smali from source builds - https://github.com/iBotPeaches/smali
// Remove when official smali releases come out again.
maven { url 'https://jitpack.io' }
maven {
url 'https://jitpack.io'
content {
includeGroup('com.github.iBotPeaches.smali')
}
}
}
}