Skip to content

Instantly share code, notes, and snippets.

@Exerosis
Created February 22, 2018 17:55
Show Gist options
  • Select an option

  • Save Exerosis/c959108f36257d83e771afa22a801a32 to your computer and use it in GitHub Desktop.

Select an option

Save Exerosis/c959108f36257d83e771afa22a801a32 to your computer and use it in GitHub Desktop.
group = "com.mynt.test"
version = "1.0-SNAPSHOT"
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath(kotlinModule("gradle-plugin", "1.2.21"))
}
}
apply {
plugin("kotlin-platform-jvm")
}
dependencies {
compile(kotlinModule("stdlib", "1.2.21"))
expectedBy project(":")
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment