Skip to content

Commit ff0cdbe

Browse files
committed
v0.7.8
1 parent 2a50081 commit ff0cdbe

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

uno-core/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ tasks {
6363
freeCompilerArgs = listOf("-XXLanguage:+InlineClasses", "-Xjvm-default=enable")
6464
}
6565
sourceCompatibility = "11"
66-
// destinationDir = compileJava.get().destinationDir
66+
destinationDir = compileJava.get().destinationDir
6767
}
68-
// jar { duplicatesStrategy = DuplicatesStrategy.EXCLUDE }
68+
jar { duplicatesStrategy = DuplicatesStrategy.EXCLUDE }
6969

7070
compileTestKotlin {
7171
kotlinOptions.jvmTarget = "11"

uno-core/src/main/kotlin/uno/kotlin/util.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ operator fun IntBuffer.plusAssign(i: Int) {
7272
put(i)
7373
}
7474

75-
val version = "0.7.7"
75+
val version = "0.7.8"
7676

7777
val isNotCI: Boolean
7878
get() = System.getenv("GITHUB_ACTIONS") != "true" && System.getenv("TRAVIS") != "true"

uno-vk/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ tasks {
6363
freeCompilerArgs = listOf("-XXLanguage:+InlineClasses", "-Xjvm-default=enable")
6464
}
6565
sourceCompatibility = "11"
66+
destinationDir = compileJava.get().destinationDir
6667
}
68+
jar { duplicatesStrategy = DuplicatesStrategy.EXCLUDE }
6769

6870
compileTestKotlin {
6971
kotlinOptions.jvmTarget = "11"
7072
sourceCompatibility = "11"
71-
// destinationDir = compileJava.get().destinationDir
7273
}
73-
// jar { duplicatesStrategy = DuplicatesStrategy.EXCLUDE }
7474

7575
compileJava {
7676
// this is needed because we have a separate compile step in this example with the 'module-info.java' is in 'main/java' and the Kotlin code is in 'main/kotlin'

uno-vk/src/main/java/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
requires com.github.kotlin_graphics.vkk;
1111
requires com.github.kotlin_graphics.kool;
1212

13-
// exports uno.vk;
13+
exports uno.vk;
1414
}

0 commit comments

Comments
 (0)