Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MAVEN_DEBUG_SCRIPT (0.1 sec)

  1. apache-maven/src/assembly/maven/bin/mvn.cmd

    rem Use temp file approach with cmd /c to ensure proper file handle release
    
    set "JVM_CONFIG_TEMP=%TEMP%\mvn-jvm-config-%RANDOM%-%RANDOM%.txt"
    
    rem Debug logging (set MAVEN_DEBUG_SCRIPT=1 to enable)
    if defined MAVEN_DEBUG_SCRIPT (
      echo [DEBUG] Found .mvn\jvm.config file at: %MAVEN_PROJECTBASEDIR%\.mvn\jvm.config
      echo [DEBUG] Using temp file: %JVM_CONFIG_TEMP%
      echo [DEBUG] Running JvmConfigParser with Java: %JAVACMD%
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Dec 10 16:40:06 UTC 2025
    - 10.7K bytes
    - Viewed (3)
  2. apache-maven/src/assembly/maven/bin/mvn

    # and ensures POSIX compliance (no xargs -0, awk, or complex sed needed)
    # Set MAVEN_DEBUG_SCRIPT=1 to enable debug logging
    concat_lines() {
      if [ -f "$1" ]; then
        # Use Java source-launch mode (JDK 11+) to run JvmConfigParser directly
        # This avoids the need for compilation and temporary directories
    
        # Debug logging
        if [ -n "$MAVEN_DEBUG_SCRIPT" ]; then
          echo "[DEBUG] Found jvm.config file at: $1" >&2
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Dec 10 16:40:06 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top