Created
February 22, 2018 17:55
-
-
Save Exerosis/c959108f36257d83e771afa22a801a32 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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