This is an automated email from the ASF dual-hosted git repository.
joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/flex-tlf.git
The following commit(s) were added to refs/heads/develop by this push:
new dfd0db0 build.properties: remove JVM args that are no longer
supported by modern Java VMs
dfd0db0 is described below
commit dfd0db040fb6af0035072576dc3fb0dc4026b6d6
Author: Josh Tynjala <[email protected]>
AuthorDate: Wed Feb 4 13:26:48 2026 -0800
build.properties: remove JVM args that are no longer supported by modern
Java VMs
Using these options will cause the build to report an error and fail
---
build.properties | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.properties b/build.properties
index be2b672..934cd8f 100644
--- a/build.properties
+++ b/build.properties
@@ -31,7 +31,7 @@ minimalTests = false
flexdebug = true
# JVM options for <compc> and <mxmlc> tasks
-jvm.args = ${local.d32} -Xms64m -Xmx1024m -XX:MaxPermSize=1024m
-XX:+CMSClassUnloadingEnabled -ea -Dapple.awt.UIElement=true
+jvm.args = ${local.d32} -Xms64m -Xmx1024m -ea -Dapple.awt.UIElement=true
# -d32/-d64 for 32-bit/64-bit code model (or don't specify for the default)
# -Xms64m: start out with a 64 MB heap
# -Xmx512m: allow the heap to grow to 512 MB