Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MAVEN_OPTS (0.04 sec)

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

    # Read JVM config and append to MAVEN_OPTS, preserving special characters
    _jvm_config="`concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config"`"
    if [ -n "$_jvm_config" ]; then
      if [ -n "$MAVEN_OPTS" ]; then
        MAVEN_OPTS="$MAVEN_OPTS $_jvm_config"
      else
        MAVEN_OPTS="$_jvm_config"
      fi
    fi
    if [ -n "$MAVEN_DEBUG_SCRIPT" ]; then
      echo "[DEBUG] Final MAVEN_OPTS: $MAVEN_OPTS" >&2
    fi
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Dec 10 16:40:06 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  2. Jenkinsfile

                if (isDeployedBranch()) {
                  withEnv(["JAVA_HOME=${tool "jdk_17_latest"}",
                           "PATH+MAVEN=${ tool "jdk_17_latest" }/bin:${tool "maven_3_latest"}/bin",
                           "MAVEN_OPTS=-Xms4G -Xmx4G -Djava.awt.headless=true"]) {
                    sh "mvn clean deploy -DdeployAtEnd=true -B"
                  }
                }
              }
            }
          }
        }
      }
    }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 10 12:31:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/bin/mvn.cmd

    @REM   MAVEN_BATCH_ECHO  (Optional) Set to 'on' to enable the echoing of the batch commands.
    @REM   MAVEN_BATCH_PAUSE (Optional) set to 'on' to wait for a key stroke before ending.
    @REM   MAVEN_OPTS        (Optional) Java runtime options used when Maven is executed.
    @REM   MAVEN_SKIP_RC     (Optional) Flag to disable loading of mavenrc files.
    @REM -----------------------------------------------------------------------------
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Dec 10 16:40:06 UTC 2025
    - 10.7K bytes
    - Viewed (3)
  4. .github/workflows/maven.yml

      cancel-in-progress: true
    
    # clear all permissions for GITHUB_TOKEN
    permissions: {}
    
    env:
      MIMIR_VERSION: 0.10.6
      MIMIR_BASEDIR: ~/.mimir
      MIMIR_LOCAL: ~/.mimir/local
      MAVEN_OPTS: -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=./target/java_heapdump.hprof
    
    jobs:
      initial-build:
        runs-on: ubuntu-latest
        steps:
          - name: Set up JDK
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 04:24:24 UTC 2025
    - 12.2K bytes
    - Viewed (0)
Back to top