• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

<lambda>null1 plugins {
2     kotlin("jvm")
3 }
4 
<lambda>null5 subprojects {
6     repositories {
7         mavenCentral()
8     }
9 
10     tasks.withType<JavaCompile>().configureEach {
11         sourceCompatibility = JavaVersion.VERSION_1_8.toString()
12         targetCompatibility = JavaVersion.VERSION_1_8.toString()
13     }
14 }
15