Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for Maven4 (0.03 sec)

  1. impl/maven-cli/pom.xml

      <artifactId>maven-cli</artifactId>
    
      <name>Maven 4 CLI</name>
      <description>Maven 4 CLI component, with CLI and logging support.</description>
    
      <dependencies>
        <!--  Maven4 API -->
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-annotations</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-core</artifactId>
        </dependency>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSessionBuilderSupplier.java

     * under the License.
     */
    package org.apache.maven.repository.internal;
    
    import java.util.Arrays;
    import java.util.function.Supplier;
    
    import org.apache.maven.api.DependencyScope;
    import org.apache.maven.repository.internal.artifact.FatArtifactTraverser;
    import org.apache.maven.repository.internal.scopes.Maven4ScopeManagerConfiguration;
    import org.apache.maven.repository.internal.type.DefaultTypeProvider;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 09:40:15 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. impl/maven-core/pom.xml

          <artifactId>maven-api-xml</artifactId>
        </dependency>
    
        <!-- Maven4 impl -->
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-di</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-impl</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 10:37:56 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  4. maven-tests/.mvn/wrapper/maven-wrapper.properties

    # specific language governing permissions and limitations
    # under the License.
    wrapperVersion=3.3.4
    distributionType=only-script
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 15 09:25:42 UTC 2025
    - 961 bytes
    - Viewed (0)
  5. .github/workflows/maven.yml

              if [ "${{ runner.os }}" = "Windows" ]; then
                unzip maven-dist/apache-maven-*-bin.zip -d maven-local
                # Get the name of the extracted directory
                MAVEN_DIR=$(ls maven-local)
                # Move contents up one level
                mv "maven-local/$MAVEN_DIR"/* maven-local/
                rm -r "maven-local/$MAVEN_DIR"
              else
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 04:24:24 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

      xml.namespace="http://maven.apache.org/POM/${version}"
      xml.schemaLocation="https://maven.apache.org/xsd/maven-${version}.xsd">
      <id>maven</id>
      <name>Maven</name>
      <description>
        <![CDATA[
        <p>This is a reference for the Maven project descriptor used in Maven.</p>
        <p>An XSD is available at:</p>
        <ul>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
  7. .github/workflows/maven.yml

    # This workflow will build a Java project with Maven
    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
    
    jobs:
      build:
        runs-on: ${{ matrix.os }}
    
        strategy:
          matrix:
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 677 bytes
    - Viewed (0)
  8. .github/workflows/maven.yml

    # This workflow will build a Java project with Maven
    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
      workflow_dispatch:
    
    jobs:
      build:
        runs-on: ubuntu-24.04
        env:
          PARENT_BRANCH: main
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 06:47:15 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  9. apache-maven/src/assembly/maven/conf/maven-user.properties

    ${includes} = ?"${maven.user.conf}/maven-user.properties", \
                  ?"${maven.project.conf}/maven-user.properties"
    
    #
    # Maven Cache Configuration
    #
    # Controls caching behavior for different request types during Maven builds.
    # Format: RequestType { scope:SCOPE ref:REFERENCE_TYPE }
    #
    # SCOPE OPTIONS:
    #   session - Cache for entire Maven session (all modules in multi-module build)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  10. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTest.java

                    List.of("eu.maveniverse.maven.plugins:toolbox:" + Environment.TOOLBOX_VERSION + ":dump"),
                    List.of("--force-interactive"));
    
            String log = logs.get("eu.maveniverse.maven.plugins:toolbox:" + Environment.TOOLBOX_VERSION + ":dump");
            assertTrue(log.contains("https://repo1.maven.org/maven2"), log);
            assertFalse(log.contains("https://repo.maven.apache.org/maven2"), log);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 21 12:17:55 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top