Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MavenUpCling (0.05 sec)

  1. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/PluginUpgradeCliTest.java

    import java.io.ByteArrayOutputStream;
    import java.nio.charset.StandardCharsets;
    
    import org.apache.commons.cli.ParseException;
    import org.apache.maven.api.cli.mvnup.UpgradeOptions;
    import org.apache.maven.cling.MavenUpCling;
    import org.codehaus.plexus.classworlds.ClassWorld;
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertFalse;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:48:39 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/bin/mvn

            ;;
          --shell)
            MAVEN_MAIN_CLASS="org.apache.maven.cling.MavenShellCling"
            ;;
          --up)
            MAVEN_MAIN_CLASS="org.apache.maven.cling.MavenUpCling"
            ;;
          *)
            ;;
        esac
        shift
      done
    }
    
    handle_args "$@"
    MAVEN_MAIN_CLASS=${MAVEN_MAIN_CLASS:=org.apache.maven.cling.MavenCling}
    
    # Build command string for eval
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Dec 10 16:40:06 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/bin/mvn.cmd

    ) else if "%~1"=="--shell" (
          set "MAVEN_MAIN_CLASS=org.apache.maven.cling.MavenShellCling"
    ) else if "%~1"=="--up" (
          set "MAVEN_MAIN_CLASS=org.apache.maven.cling.MavenUpCling"
    )
    exit /b 0
    
    :processArgs
    if "%~1"=="" exit /b 0
    call :handleArgs %1
    shift
    goto processArgs
    
    :endHandleArgs
    call :processArgs %*
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Dec 10 16:40:06 UTC 2025
    - 10.7K bytes
    - Viewed (3)
Back to top