All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kotlin-client.build.gradle.mustache Maven / Gradle / Ivy

There is a newer version: 7.10.0
Show newest version
group '{{groupId}}'
version '{{artifactVersion}}'

wrapper {
    gradleVersion = '4.9'
    distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
}

buildscript {
    ext.kotlin_version = '1.3.20'

    repositories {
        mavenCentral()
    }
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

apply plugin: 'kotlin'

repositories {
    mavenCentral()
}

test {
    useJUnitPlatform()
}

dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
    compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
    compile "com.squareup.moshi:moshi-kotlin:1.5.0"
    compile "com.squareup.moshi:moshi-adapters:1.5.0"
    compile "com.squareup.okhttp3:okhttp:3.8.0"
    compile "org.threeten:threetenbp:1.3.6"
    testImplementation "io.kotlintest:kotlintest-runner-junit5:3.1.0"
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy