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.8.0
Show newest version
group '{{groupId}}'
version '{{artifactVersion}}'

task wrapper(type: Wrapper) {
    gradleVersion = '3.3'
    distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
}

buildscript {
    ext.kotlin_version = '1.1.2'

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

apply plugin: 'kotlin'

repositories {
    mavenCentral()
}

dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$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"
    testCompile "io.kotlintest:kotlintest:2.0.2"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy