Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for funding (0.17 sec)

  1. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        //      only deal in concrete terms -- all version finding mumbo jumbo is a customization to base functionality
        //      the plugin manager provides.
    
        @Test
        void testRemoteResourcesPlugin() throws Exception {
            // TODO turn an equivalent back on when the RR plugin is released.
    
            /*
    
            This will not work until the RR plugin is released to get rid of the binding to the reporting exception which is a mistake.
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProcessor.java

     * the same injector is immediately matched to this explicit binding, which means extensions
     * cannot override this binding. This is because the lookup is always short-circuited in this
     * specific situation (plain @Inject request, and plain explicit binding for the same type.)
     *
     * The simplest solution is to use a custom @Named here so it isn't bound under the plain key.
     * This is only necessary for default components using @Typed that want to support overriding.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  3. maven-core/src/site/resources/design/2.1-lifecycle-refactor.graffle

    0000\cocoartf824\cocoasubrtf410 {\fonttbl\f0\fswiss\fcharset77 Helvetica-Oblique;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural \f0\i\fs24 \cf0 if binding spec \ uses plugin prefix}ClassLineGraphicHead{623.954, 304}{652.046, 222}StylestrokeHeadArrow{488, 317}{555, 317}StylestrokeHeadArrow{453.532, 330}{575.468, 366}StylestrokeHeadArrow{83.5916, 196}{84, 138}{256, 138}{466, 138}{656, 138}{671.008, 9...
    Others
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 11 17:19:02 GMT 2017
    - 96.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                            master.put(key, element);
    
                            if (!pending.isEmpty()) {
                                predecessors.put(key, pending);
                                pending = new ArrayList<>();
                            }
                        } else {
                            pending.add(element);
                        }
                    }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecycleMojo.java

     * under the License.
     */
    package org.apache.maven.lifecycle.mapping;
    
    import java.util.List;
    
    import org.apache.maven.api.xml.XmlNode;
    import org.apache.maven.model.Dependency;
    
    /**
     * Mojo (plugin goal) binding to a lifecycle phase.
     *
     * @see LifecyclePhase
     */
    public class LifecycleMojo {
    
        private String goal;
        private XmlNode configuration;
        private List<Dependency> dependencies;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 03 15:52:23 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/collector/ProjectCollectionStrategy.java

    import java.util.List;
    
    import org.apache.maven.execution.MavenExecutionRequest;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectBuildingException;
    
    /**
     * Describes strategies for finding projects that Maven could build.
     */
    public interface ProjectCollectionStrategy {
        /**
         *
         * @param request
         * @return
         * @throws ProjectBuildingException
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

            return type().getLanguage();
        }
    
        /**
         * The type of main artifact produced by this packaging.
         */
        @Nonnull
        Type type();
    
        /**
         * Returns the binding to use specifically for this packaging keyed by lifecycle id.
         * This will be used instead of the default packaging definition.
         */
        @Nonnull
        Map<String, PluginContainer> plugins();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                    for (Dependency dependency : result.getUnresolvedDependencies()) {
                        logger.warn("o {}", dependency);
                    }
    
                    logger.warn("Try running the build up to the lifecycle phase \"package\"");
                } else {
                    throw new LifecycleExecutionException(messageBuilderFactory, null, project, e);
                }
            }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        private boolean isProjectPresent = true;
    
        // ----------------------------------------------------------------------------
        // We need to allow per execution user and global settings as the embedder
        // might be running in a mode where it's executing many threads with totally
        // different settings.
        // ----------------------------------------------------------------------------
    
        private File userSettingsFile;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

                    Set<Binding<Q>> res = getBindings(key);
                    if (res != null && !res.isEmpty()) {
                        List<Binding<Q>> bindingList = new ArrayList<>(res);
                        Comparator<Binding<Q>> comparing = Comparator.comparing(Binding::getPriority);
                        bindingList.sort(comparing.reversed());
                        Binding<Q> binding = bindingList.get(0);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 8K bytes
    - Viewed (0)
Back to top