jellyfin/build.gradle.kts

27 lines
771 B
Text
Raw Permalink Normal View History

2026-02-02 14:56:38 +01:00
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)
}