GERONIMO-6815 reversing no-server default to simplify its drop later
diff --git a/arthur-impl/src/main/java/org/apache/geronimo/arthur/impl/nativeimage/ArthurNativeImageConfiguration.java b/arthur-impl/src/main/java/org/apache/geronimo/arthur/impl/nativeimage/ArthurNativeImageConfiguration.java
index 7e59074..78e924f 100644
--- a/arthur-impl/src/main/java/org/apache/geronimo/arthur/impl/nativeimage/ArthurNativeImageConfiguration.java
+++ b/arthur-impl/src/main/java/org/apache/geronimo/arthur/impl/nativeimage/ArthurNativeImageConfiguration.java
@@ -86,7 +86,7 @@
     private boolean enableAllSecurityServices = true;
 
     @GraalCommandPart(order = 20, template = "--no-server")
-    private boolean noServer = true;
+    private boolean noServer = false;
 
     @GraalCommandPart(order = 21)
     private String main;
diff --git a/arthur-impl/src/test/java/org/apache/geronimo/arthur/impl/nativeimage/CommandGeneratorTest.java b/arthur-impl/src/test/java/org/apache/geronimo/arthur/impl/nativeimage/CommandGeneratorTest.java
index 774f39d..16774dc 100644
--- a/arthur-impl/src/test/java/org/apache/geronimo/arthur/impl/nativeimage/CommandGeneratorTest.java
+++ b/arthur-impl/src/test/java/org/apache/geronimo/arthur/impl/nativeimage/CommandGeneratorTest.java
@@ -110,7 +110,7 @@
                                 "-H:+AddAllCharsets", "-H:+ReportExceptionStackTraces",
                                 "--no-fallback", "--static", "--allow-incomplete-classpath",
                                 "--report-unsupported-elements-at-runtime", "--enable-all-security-services",
-                                "--no-server", "main", "main.graal.exec")),
+                                "main", "main.graal.exec")),
                 new Case(
                         classpathConfig,
                         asList(
@@ -119,7 +119,7 @@
                                 "-H:+AddAllCharsets", "-H:+ReportExceptionStackTraces",
                                 "--no-fallback", "--static", "--allow-incomplete-classpath",
                                 "--report-unsupported-elements-at-runtime", "--enable-all-security-services",
-                                "--no-server", "main", "main.graal.exec")),
+                                "main", "main.graal.exec")),
                 new Case(
                         filledConfig,
                         asList(