summaryrefslogtreecommitdiff
path: root/plugins/kotlin/project-wizard/cli/testData/buildFileGeneration/android/expected/build.gradle
blob: 59e6d776e0e7bb3abbc60ad34fe2cb40971abd77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
buildscript {
    repositories {
        gradlePluginPortal()
        jcenter()
        google()
        mavenCentral()
    }
    dependencies {
        classpath('org.jetbrains.kotlin:kotlin-gradle-plugin:KOTLIN_VERSION')
        classpath('com.android.tools.build:gradle:4.1.2')
    }
}

group = 'testGroupId'
version = '1.0-SNAPSHOT'

allprojects {
    repositories {
        google()
        jcenter()
        mavenCentral()
    }
}