Bump Kotlin extension to version 1.1.0-SNAPSHOT
This commit is contained in:
parent
5f1eb63c4f
commit
4b7f41660f
2 changed files with 7 additions and 6 deletions
|
@ -4,7 +4,7 @@ bld.downloadLocation=
|
||||||
bld.extension-detekt=com.uwyn.rife2:bld-detekt:0.9.9
|
bld.extension-detekt=com.uwyn.rife2:bld-detekt:0.9.9
|
||||||
bld.extension-gv=com.uwyn.rife2:bld-generated-version:1.0.0
|
bld.extension-gv=com.uwyn.rife2:bld-generated-version:1.0.0
|
||||||
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.9
|
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.9
|
||||||
bld.extension-kotlin=com.uwyn.rife2:bld-kotlin:1.0.4
|
bld.extension-kotlin=com.uwyn.rife2:bld-kotlin:1.1.0-SNAPSHOT
|
||||||
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
||||||
bld.sourceDirectories=
|
bld.sourceDirectories=
|
||||||
bld.version=2.2.1
|
bld.version=2.2.1
|
||||||
|
|
|
@ -39,6 +39,7 @@ import rife.bld.extension.DetektOperation;
|
||||||
import rife.bld.extension.GeneratedVersionOperation;
|
import rife.bld.extension.GeneratedVersionOperation;
|
||||||
import rife.bld.extension.JacocoReportOperation;
|
import rife.bld.extension.JacocoReportOperation;
|
||||||
import rife.bld.extension.kotlin.CompileOptions;
|
import rife.bld.extension.kotlin.CompileOptions;
|
||||||
|
import rife.bld.extension.kotlin.JvmOptions;
|
||||||
import rife.bld.operations.exceptions.ExitStatusException;
|
import rife.bld.operations.exceptions.ExitStatusException;
|
||||||
import rife.bld.publish.PomBuilder;
|
import rife.bld.publish.PomBuilder;
|
||||||
import rife.tools.FileUtils;
|
import rife.tools.FileUtils;
|
||||||
|
@ -154,12 +155,12 @@ public class MobibotBuild extends Project {
|
||||||
@Override
|
@Override
|
||||||
public void compile() throws Exception {
|
public void compile() throws Exception {
|
||||||
releaseInfo();
|
releaseInfo();
|
||||||
var options = new CompileOptions().verbose(true).jvmOptions("--enable-native-access=ALL-UNNAMED");
|
var options = new CompileOptions().verbose(true);
|
||||||
var op = new CompileKotlinOperation()
|
options.jvmOptions().enableNativeAccess(JvmOptions.ALL_UNNAMED);
|
||||||
.kotlinHome("/opt/kotlinc/")
|
new CompileKotlinOperation()
|
||||||
.compileOptions(options)
|
.compileOptions(options)
|
||||||
.fromProject(this);
|
.fromProject(this)
|
||||||
op.execute();
|
.execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue