mirror of
https://github.com/appwrite/sdk-for-android.git
synced 2026-04-07 19:17:49 +00:00
34 lines
793 B
Groovy
34 lines
793 B
Groovy
apply plugin: 'io.github.gradle-nexus.publish-plugin'
|
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
ext.kotlin_version = "1.9.10"
|
|
|
|
version System.getenv("SDK_VERSION")
|
|
|
|
repositories {
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:8.2.2"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "io.github.gradle-nexus:publish-plugin:1.3.0"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
apply from: "${rootDir}/scripts/publish-config.gradle"
|
|
|