buildSrc/build.gradle.kts
changeset 17 e395df7aa39f
parent 15 fc8b8638d5e3
child 19 91a3ad3b1b9c
equal deleted inserted replaced
16:bdb9bdb8d30c 17:e395df7aa39f
    26 }
    26 }
    27 
    27 
    28 
    28 
    29 version = "1.0"
    29 version = "1.0"
    30 
    30 
    31 kotlinDslPluginOptions {
       
    32     experimentalWarning.set(false)
       
    33 }
       
    34 
       
    35 repositories {
    31 repositories {
    36     gradlePluginPortal()
    32     gradlePluginPortal()
    37     jcenter()
    33     mavenCentral()
    38     google()
    34     google()
    39     maven {
    35     maven {
    40         // Workaround for genymotion plugin not working on gradle 5.0
    36         // Workaround for genymotion plugin not working on gradle 5.0
    41         // we publish 1.4.2 version with fixes
    37         // we publish 1.4.2 version with fixes
    42         url = uri("https://raw.githubusercontent.com/fbarthelery/genymotion-gradle-plugin/master/repo/")
    38         url = uri("https://raw.githubusercontent.com/fbarthelery/genymotion-gradle-plugin/master/repo/")
    45         url = uri("https://kotlin.bintray.com/kotlinx")
    41         url = uri("https://kotlin.bintray.com/kotlinx")
    46     }
    42     }
    47 }
    43 }
    48 
    44 
    49 dependencies {
    45 dependencies {
    50     implementation("com.android.tools.build:gradle:4.0.1")
    46     implementation("com.android.tools.build:gradle:7.0.2")
    51     implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.71")
    47     implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.71")
    52     implementation("com.genymotion:plugin:1.4.2")
    48     implementation("com.genymotion:plugin:1.4.2")
    53     implementation("gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.15.0")
    49     implementation("gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.15.0")
    54     implementation("com.github.triplet.gradle:play-publisher:2.7.2")
    50     implementation("com.github.triplet.gradle:play-publisher:2.7.2")
    55 
    51