Snippets

Владимир Попов Заготовка для Kotlin проекта

Created by Владимир Попов last modified
buildscript {
   ext.kotlin_version = '1.0.2'
   ext.spek_version = '1.0.25'
   
  repositories {
    mavenCentral()
    maven {
        url "http://repository.jetbrains.com/all"
    }
  }
  dependencies {
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  }
}

apply plugin: "kotlin" // or apply plugin: "kotlin2js" if targeting JavaScript

repositories {
  mavenCentral()
}

dependencies {
  compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
  testCompile "org.jetbrains.spek:spek:$spek_version"
}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.