Thanks Mario. I’ve checked out all of that example...
# gradle
d
Thanks Mario. I’ve checked out all of that examples and familiar with them. Maybe you know how to port this to kts?
Copy code
apply plugin: 'java'

compileJava {
  sourceCompatibility = JavaVersion.VERSION_1_7
  targetCompatibility = JavaVersion.VERSION_1_7
}

compileTestJava {
  sourceCompatibility = JavaVersion.VERSION_1_8
  targetCompatibility = JavaVersion.VERSION_1_8
}