Skip to content

Instantly share code, notes, and snippets.

@h0tk3y
Last active March 1, 2017 16:59
Show Gist options
  • Select an option

  • Save h0tk3y/ee9bb8d058360634204579505fe0e78a to your computer and use it in GitHub Desktop.

Select an option

Save h0tk3y/ee9bb8d058360634204579505fe0e78a to your computer and use it in GitHub Desktop.
group 'com.example.myExample'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.1.0'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin'
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment