mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-01 19:58:15 +00:00
* [Android] fixed build after decomission of jcenter JCenter[1] has been removed and now is failing android build. This change updates the configuration to remove this and few other warnings. 1 - https://developer.android.com/studio/build/jcenter-migration * [Kotlin] fix build for latest gradle version 8.0.1 --------- Co-authored-by: Derek Bailey <derekbailey@google.com>
24 lines
405 B
Kotlin
24 lines
405 B
Kotlin
group = "com.google.flatbuffers"
|
|
version = "2.0.0-SNAPSHOT"
|
|
|
|
buildscript {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath(libs.plugin.kotlin.gradle)
|
|
classpath(libs.plugin.kotlinx.benchmark)
|
|
classpath(libs.plugin.jmhreport)
|
|
classpath(libs.plugin.download)
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|