Files
jellyfin-android/build.gradle.kts
T

23 lines
709 B
Kotlin
Raw Normal View History

2020-07-24 12:07:04 +02:00
allprojects {
repositories {
2021-02-16 21:30:59 +01:00
mavenCentral()
2021-04-28 18:26:00 +02:00
google()
mavenLocal {
content {
2021-08-06 19:44:58 +02:00
includeVersionByRegex(JellyfinSdk.GROUP, ".*", JellyfinSdk.LOCAL)
}
}
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") {
content {
2021-08-06 19:44:58 +02:00
includeVersionByRegex(JellyfinSdk.GROUP, ".*", JellyfinSdk.SNAPSHOT)
includeVersionByRegex(JellyfinSdk.GROUP, ".*", JellyfinSdk.SNAPSHOT_UNSTABLE)
2025-05-27 14:54:47 +02:00
includeVersionByRegex(JellyfinMedia3.GROUP, ".*", JellyfinMedia3.SNAPSHOT)
}
}
2020-07-24 12:07:04 +02:00
}
}
2025-05-27 15:12:22 +02:00
tasks.register<Delete>("clean") {
2024-09-01 22:05:36 +10:00
delete(rootProject.layout.buildDirectory)
2020-09-10 22:08:31 +02:00
}