Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 87 for combine (0.14 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

        Set<DependencyScope> dependencyScopes();
    
        PathScope MAIN_COMPILE = pathScope(
                "main-compile",
                ProjectScope.MAIN,
                DependencyScope.COMPILE_ONLY,
                DependencyScope.COMPILE,
                DependencyScope.PROVIDED);
    
        PathScope MAIN_RUNTIME =
                pathScope("main-runtime", ProjectScope.MAIN, DependencyScope.COMPILE, DependencyScope.RUNTIME);
    
        PathScope TEST_COMPILE = pathScope(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementImporter.java

            }
            stringBuilder
                    .append(":")
                    .append(dependency.getVersion())
                    .append("@")
                    .append(dependency.getScope() == null ? "compile" : dependency.getScope());
            if (dependency.isOptional()) {
                stringBuilder.append("[optional]");
            }
            if (!dependency.getExclusions().isEmpty()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

         * will default to {@link #COMPILE}.
         */
        UNDEFINED("", false),
    
        /**
         * Compile only.
         */
        COMPILE_ONLY("compile-only", false),
    
        /**
         * Compile, runtime and test.
         */
        COMPILE("compile", true),
    
        /**
         * Runtime and test.
         */
        RUNTIME("runtime", true),
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Mar 27 14:46:12 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            pd.setVersion("1");
    
            DefaultArtifact artifact = new DefaultArtifact(
                    pd.getGroupId(),
                    pd.getArtifactId(),
                    pd.getVersion(),
                    "compile",
                    "maven-plugin",
                    "",
                    new DefaultArtifactHandler("maven-plugin"));
            pd.setPluginArtifact(artifact);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

       "Contributor" means any person or entity that distributes the Program.
    
    "Licensed Patents" mean patent claims licensable by a Contributor which are
    necessarily infringed by the use or sale of its Contribution alone or when
    combined with the Program.
    
    "Program" means the Contributions distributed in accordance with this Agreement.
    
    "Recipient" means anyone who receives the Program under this Agreement, including
    all Contributors.
    
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    us-classworlds/pom.xml plexus org.codehaus.plexus 1.0.9 4.0.0 org.codehaus.plexus plexus-classworlds jar Plexus Classworlds 1.2-alpha-7 2002 junit junit 3.8.1 jar compile maven-surefire-plugin once maven-compiler-plugin org/codehaus/plexus/classworlds/event/* debug aspectj aspectjrt 1.5.0 org.codehaus.mojo aspectj-maven-plugin compile 1.4 scm:svn:http://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-1.2-alpha-7 scm:svn:https://svn.codehaus.org/plexus/plexus-classworlds/tags/p...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 41.6K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolverTest.java

        @Test
        void testCompileResolution() throws Exception {
            MetadataGraph res;
    
            res = resolver.resolveConflicts(graph, ArtifactScopeEnum.compile);
    
            assertNotNull(res, "null graph after resolver");
            assertNotNull(res.getVertices(), "no vertices in the resulting graph after resolver");
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/WarLifecycleMappingProvider.java

            "compile", "org.apache.maven.plugins:maven-compiler-plugin:" + COMPILER_PLUGIN_VERSION + ":compile",
            "process-test-resources",
                    "org.apache.maven.plugins:maven-resources-plugin:" + RESOURCES_PLUGIN_VERSION + ":testResources",
            "test-compile", "org.apache.maven.plugins:maven-compiler-plugin:" + COMPILER_PLUGIN_VERSION + ":testCompile",
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/remote-repo-1/maven-test/poms/maven-test-b-1.0.pom

          <artifactId>maven-test-b</artifactId>
          <version>1.0</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>maven-test-z</artifactId>
          <version>1.0</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
      </dependencies>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Mar 10 01:35:25 GMT 2005
    - 544 bytes
    - Viewed (0)
  10. maven-compat/src/test/resources/inheritance-repo/t05/maven-test/poms/t05-b-1.1.pom

          <artifactId>t05-c</artifactId>
          <version>1.0</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t05-d</artifactId>
          <version>1.1</version>
          <type>jar</type>
          <scope>compile</scope>
          <optional>false</optional>
        </dependency>
      </dependencies>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 622 bytes
    - Viewed (0)
Back to top