Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for rosulate (0.17 sec)

  1. maven-core/plugin-manager.txt

     * they could be resolved from a local repository - I think we need a simple dependency model here
     * that is more mercury related and not Maven related i.e. no POMs - workspace resolver - we need
     * tools to pre-populate this repository
     *
     * h3. create an isolated classloader
     *
     * h3. lookup the plugin with a configuration
     *
     * h3. execute the plugin
     *
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

            /*
             * This provides backward-compat with 2.x that allowed plugins like the maven-remote-resources-plugin:1.0 to
             * populate the builder configuration with model repositories instead of artifact repositories.
             */
    
            if (repositories != null) {
                boolean normalized = false;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

    import org.apache.maven.api.services.DependencyResolverResult;
    
    /**
     * The result of collecting dependencies with a dependency resolver.
     * New instances are initially empty. Callers must populate with calls
     * to the following methods, in that order:
     *
     * <ul>
     *   <li>{@link #addOutputDirectory(Path, Path, PathModularizationCache)} (optional)</li>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulator.java

         * method is called on a new/empty execution request before the caller mutates it to fit its needs.
         *
         * @param request The execution request to populate, must not be {@code null}.
         * @param toolchains The toolchains to copy into the execution request, may be {@code null}.
         * @return The populated execution request, never {@code null}.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/toolchain/java/JavaToolchainFactory.java

            // use DefaultJavaToolChain for compatibility with maven 3.2.3 and earlier
    
            @SuppressWarnings("deprecation")
            JavaToolchainImpl jtc = new DefaultJavaToolChain(model, logger);
    
            // populate the provides section
            Properties provides = model.getProvides();
            for (Entry<Object, Object> provide : provides.entrySet()) {
                String key = (String) provide.getKey();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 4K bytes
    - Viewed (0)
  6. maven-core/lifecycle-executor.txt

    foreach configuration element:
     - if read only and being set squawk
    
     - find the parameter
     - get value from expression or default
     - if required and null squawk
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 9.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

    import org.apache.maven.api.services.DependencyResolverResult;
    
    /**
     * The result of collecting dependencies with a dependency resolver.
     * New instances are initially empty. Callers must populate with calls
     * to the following methods, in that order:
     *
     * <ul>
     *   <li>{@link #addOutputDirectory(Path, Path, PathModularizationCache)} (optional)</li>
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/AbstractMavenPluginParametersValidator.java

            try {
                return expressionEvaluator.evaluate(strValue) != null;
            } catch (ExpressionEvaluationException e) {
                // not important
                // will be reported during Mojo fields populate
            }
    
            // fallback - in case of error in expressionEvaluator
            return false;
        }
    
        @Override
        public final void validate(
                MavenSession mavenSession,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.1K bytes
    - Viewed (0)
Back to top