Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMojo (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                        InvalidPluginDescriptorException {
            PluginDescriptor pluginDescriptor = getPluginDescriptor(plugin, repositories, session);
    
            MojoDescriptor mojoDescriptor = pluginDescriptor.getMojo(goal);
    
            if (mojoDescriptor == null) {
                throw new MojoNotFoundException(goal, pluginDescriptor);
            }
    
            return mojoDescriptor;
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

                    new InputSource(DefaultLifecyclePluginAnalyzer.DEFAULTLIFECYCLEBINDINGS_MODELID, null);
            InputLocation location = new InputLocation(-1, -1, inputSource, 0);
    
            List<LifecycleMojo> mojos = goals.getMojos();
            if (mojos != null) {
                for (int i = 0; i < mojos.size(); i++) {
                    LifecycleMojo mojo = mojos.get(i);
    
                    // Compute goal coordinates
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 8K bytes
    - Viewed (0)
Back to top