Move group and version specification to root build file (#3)

This commit is contained in:
Max Rumpf 2021-09-03 12:16:31 +02:00 committed by GitHub
parent 81f6e2ad9d
commit 98ab3de282
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -13,6 +13,9 @@ buildscript {
}
allprojects {
group = "org.jellyfin.exoplayer"
version = createVersion()
repositories {
mavenCentral()
google()

View File

@ -5,9 +5,6 @@ plugins {
signing
}
group = "org.jellyfin.exoplayer"
version = createVersion()
val exoplayerProject = project(":exoplayer-extension-ffmpeg")
val android = exoplayerProject.extensions.findByType(BaseExtension::class.java) ?: error("Could not find android extension")