Guest User

Untitled

a guest
Nov 19th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. group 'com.beesightsoft.kotlin'
  2. version '1.0-SNAPSHOT'
  3.  
  4. buildscript {
  5. ext.kotlin_version = '1.1.60'
  6.  
  7. repositories {
  8. mavenCentral()
  9. }
  10. dependencies {
  11. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  12. }
  13. }
  14.  
  15. apply plugin: 'kotlin'
  16.  
  17. repositories {
  18. mavenCentral()
  19. }
  20.  
  21. dependencies {
  22. compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
  23. }
  24.  
  25. compileKotlin {
  26. kotlinOptions.jvmTarget = "1.8"
  27. }
  28. compileTestKotlin {
  29. kotlinOptions.jvmTarget = "1.8"
  30. }
Add Comment
Please, Sign In to add comment