Advertisement
Guest User

Untitled

a guest
Mar 10th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.48 KB | None | 0 0
  1. plugins {
  2.     id 'java'
  3.     id 'org.jetbrains.kotlin.jvm' version '1.3.10'
  4. }
  5.  
  6. group 'SelenTest'
  7. version '1.0-SNAPSHOT'
  8.  
  9. sourceCompatibility = 1.8
  10.  
  11. repositories {
  12.     mavenCentral()
  13. }
  14. test {
  15.     useJUnitPlatform()
  16. }
  17.  
  18. dependencies {
  19.     compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
  20.     testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.3.0'
  21. }
  22.  
  23. compileKotlin {
  24.     kotlinOptions.jvmTarget = "1.8"
  25. }
  26. compileTestKotlin {
  27.     kotlinOptions.jvmTarget = "1.8"
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement