Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for mvn3 (0.03 sec)

  1. .github/dependabot.yml

        directory: "/"
        schedule:
          interval: "daily"
    
      - package-ecosystem: maven
        directory: "/"
        schedule:
          interval: "daily"
        target-branch: "maven-3.9.x"
        labels:
          - "mvn3"
    
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Aug 21 09:07:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. mvnw

    # first directory with .mvn subdirectory is considered project base directory
    find_maven_basedir() {
      if [ -z "$1" ]; then
        echo "Path not specified to find_maven_basedir" >&2
        return 1
      fi
    
      basedir="$1"
      wdir="$1"
      while [ "$wdir" != '/' ]; do
        if [ -d "$wdir"/.mvn ]; then
          basedir=$wdir
          break
        fi
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/bin/mvn

      fi
    fi
    
    # traverses directory structure from process work directory to filesystem root
    # first directory with .mvn subdirectory is considered project base directory
    find_maven_basedir() {
    (
      basedir=`find_file_argument_basedir "$@"`
      wdir="$basedir"
      while :
      do
        if [ -d "$wdir"/.mvn ] ; then
          basedir=$wdir
          break
        fi
        if [ "$wdir" = '/' ] ; then
          break
        fi
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. mvnw.cmd

    :init
    
    @REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
    @REM Fallback to current working directory if not found.
    
    set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
    IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
    
    set EXEC_DIR=%CD%
    set WDIR=%EXEC_DIR%
    :findBaseDir
    IF EXIST "%WDIR%"\.mvn goto baseDirFound
    cd ..
    IF "%WDIR%"=="%CD%" goto baseDirNotFound
    set WDIR=%CD%
    goto findBaseDir
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/maven/bin/mvn.cmd

    set "MAVEN_HOME=%MAVEN_HOME:~0,-5%"
    if "%MAVEN_HOME%"=="" goto error
    
    :checkMCmd
    if not exist "%MAVEN_HOME%\bin\mvn.cmd" goto error
    
    @REM ==== END VALIDATION ====
    
    :init
    
    set "CLASSWORLDS_CONF=%MAVEN_HOME%\bin\m2.conf"
    
    @REM Find the project basedir, i.e., the directory that contains the directory ".mvn".
    @REM Fallback to current working directory if not found.
    
    set "EXEC_DIR=%CD%"
    set "WDIR=%EXEC_DIR%"
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. .github/workflows/maven_build_itself.yml

              distribution: 'temurin'
              cache: 'maven'
    
          - name: Set up Maven
            run:
              mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7"
    
          - name: Build with Maven
            run: ./mvnw install -e -B -V -DdistributionFileName=apache-maven
    
          - name: Extract tarball
            shell: bash
            run: |
              set +e
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. .github/workflows/maven.yml

          - name: Set up Maven
            run:
              mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7"
    
          - name: Build Maven
            run: ./mvnw install -e -B -V -DdistributionFileName=apache-maven -DskipTests -f maven/pom.xml
    
          - name: Running integration tests
            shell: bash
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            Files.writeString(mavenUserProps, "${includes} = ?${session.rootDirectory}/.mvn/maven.properties\n");
            Path rootDirectory = fs.getPath("C:\\myRootDirectory");
            Path topDirectory = rootDirectory.resolve("myTopDirectory");
            Path mvn = rootDirectory.resolve(".mvn");
            Files.createDirectories(mvn);
            Files.writeString(
                    mvn.resolve("maven.properties"),
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/resident/DefaultResidentMavenInvokerTest.java

     * under the License.
     */
    package org.apache.maven.cling.invoker.mvn.resident;
    
    import java.nio.file.FileSystem;
    import java.nio.file.Path;
    import java.util.Arrays;
    
    import com.google.common.jimfs.Configuration;
    import com.google.common.jimfs.Jimfs;
    import org.apache.maven.api.cli.Invoker;
    import org.apache.maven.api.cli.Parser;
    import org.apache.maven.api.cli.mvn.MavenInvokerRequest;
    import org.apache.maven.api.cli.mvn.MavenOptions;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/resident/ResidentMavenInvoker.java

     * under the License.
     */
    package org.apache.maven.api.cli.mvn.resident;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.cli.InvokerException;
    import org.apache.maven.api.cli.mvn.MavenInvoker;
    import org.apache.maven.api.cli.mvn.MavenInvokerRequest;
    import org.apache.maven.api.cli.mvn.MavenOptions;
    
    /**
     * Resident invoker. Instance is shut down when this instance is closed.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 04 15:33:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top