|
|
@ -1,5 +1,5 @@
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* Copyright 2012-2021 the original author or authors.
|
|
|
|
* Copyright 2012-2022 the original author or authors.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
@ -31,6 +31,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile;
|
|
|
|
* <li>{@link KotlinCompile} tasks are configured to:
|
|
|
|
* <li>{@link KotlinCompile} tasks are configured to:
|
|
|
|
* <ul>
|
|
|
|
* <ul>
|
|
|
|
* <li>Use {@code apiVersion} and {@code languageVersion} 1.3.
|
|
|
|
* <li>Use {@code apiVersion} and {@code languageVersion} 1.3.
|
|
|
|
|
|
|
|
* <li>Use {@code jvmTarget} 1.8.
|
|
|
|
* <li>Treat all warnings as errors
|
|
|
|
* <li>Treat all warnings as errors
|
|
|
|
* <li>Suppress version warnings
|
|
|
|
* <li>Suppress version warnings
|
|
|
|
* </ul>
|
|
|
|
* </ul>
|
|
|
@ -48,6 +49,7 @@ class KotlinConventions {
|
|
|
|
KotlinJvmOptions kotlinOptions = compile.getKotlinOptions();
|
|
|
|
KotlinJvmOptions kotlinOptions = compile.getKotlinOptions();
|
|
|
|
kotlinOptions.setApiVersion("1.3");
|
|
|
|
kotlinOptions.setApiVersion("1.3");
|
|
|
|
kotlinOptions.setLanguageVersion("1.3");
|
|
|
|
kotlinOptions.setLanguageVersion("1.3");
|
|
|
|
|
|
|
|
kotlinOptions.setJvmTarget("1.8");
|
|
|
|
kotlinOptions.setAllWarningsAsErrors(true);
|
|
|
|
kotlinOptions.setAllWarningsAsErrors(true);
|
|
|
|
List<String> freeCompilerArgs = new ArrayList<>(compile.getKotlinOptions().getFreeCompilerArgs());
|
|
|
|
List<String> freeCompilerArgs = new ArrayList<>(compile.getKotlinOptions().getFreeCompilerArgs());
|
|
|
|
freeCompilerArgs.add("-Xsuppress-version-warnings");
|
|
|
|
freeCompilerArgs.add("-Xsuppress-version-warnings");
|
|
|
|