• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2/*
3 * Copyright 2017-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
4 */
5
6ext.configureKotlin = { type ->
7    tasks.withType(type).all {
8        kotlinOptions {
9            apiVersion = "1.3"
10            languageVersion = "1.3"
11        }
12    }
13}
14