mirror of
https://github.com/jellyfin/jellyfin-android.git
synced 2024-11-30 09:30:49 +00:00
27 lines
771 B
Plaintext
27 lines
771 B
Plaintext
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
mavenLocal {
|
|
content {
|
|
includeVersionByRegex(JellyfinSdk.GROUP, ".*", JellyfinSdk.LOCAL)
|
|
}
|
|
}
|
|
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") {
|
|
content {
|
|
includeVersionByRegex(JellyfinSdk.GROUP, ".*", JellyfinSdk.SNAPSHOT)
|
|
includeVersionByRegex(JellyfinSdk.GROUP, ".*", JellyfinSdk.SNAPSHOT_UNSTABLE)
|
|
includeVersionByRegex(JellyfinExoPlayer.GROUP, ".*", JellyfinExoPlayer.SNAPSHOT)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.wrapper {
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|
|
|
|
tasks.create<Delete>("clean") {
|
|
delete(rootProject.buildDir)
|
|
}
|