Skip to content

Commit

Permalink
downgrade teavm version
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Dec 22, 2023
1 parent 824ba7c commit a88efc9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- add TeaClassFilter printAllowedClasses() and printExcludedClasses()
- add TeaReflectionSupplier.printReflectionClasses()
- Change exclude class comparison to regex
- Downgrade teavm version to 9.0.0

[1.0.0-b8]
- Fix MMB code
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ object LibExt {
val libVersion: String = getVersion("1.0.0", "b9")

const val gdxVersion = "1.12.1"
const val teaVMVersion = "0.10.0-dev-4"
const val teaVMVersion = "0.9.0"

const val gdxImGuiVersion = "1.0.0-SNAPSHOT"
const val gdxMultiViewVersion = "1.0.0-SNAPSHOT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static void main(String[] args) throws IOException {

TeaVMTool tool = TeaBuilder.config(teaBuildConfiguration);
tool.setMainClass(TeaVMTestLauncher.class.getName());
tool.setObfuscated(false);
tool.setObfuscated(true);
TeaBuilder.build(tool);
}
}

0 comments on commit a88efc9

Please sign in to comment.