Compare commits

..

No commits in common. "9548f6150f5db21d78d01343287398227e1ecfb9" and "79bce706804ca1a6095c42a65bfa603825b3097b" have entirely different histories.

4 changed files with 3 additions and 4 deletions

View file

@ -1,6 +1,6 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.7
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.6
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.downloadLocation=
bld.sourceDirectories=

View file

@ -33,7 +33,7 @@ public class CompileKotlinOperationBuild extends Project {
public CompileKotlinOperationBuild() {
pkg = "rife.bld.extension";
name = "bld-kotlin";
version = version(0, 9, 7);
version = version(0, 9, 6);
javaRelease = 17;
downloadSources = true;

View file

@ -30,7 +30,6 @@ public enum CompileKotlinPlugin {
KOTLINX_SERIALIZATION("^kotlinx-serialization-compiler-plugin-.*$"),
LOMBOK("^lombok-compiler-plugin-.*$"),
NOARG("^noarg-compiler-plugin-.*$"),
POWER_ASSERT("^power-assert-compiler-plugin-.*$"),
SAM_WITH_RECEIVER("^sam-with-receiver-compiler-plugin-.*$");
public final String label;

View file

@ -109,7 +109,7 @@ class CompileKotlinOptionsTest {
args.add(options.args());
args.add(options.apiVersion(11).jvmTarget(11).args());
for (var a : args) {
for (var a: args) {
assertThat(a).hasSize(matches.size());
IntStream.range(0, a.size()).forEach(i -> assertThat(a.get(i)).isEqualTo(matches.get(i)));
}