Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for getPlugin (0.04 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginResolutionException.java

                                    .collect(Collectors.joining(System.lineSeparator() + "\t")),
                    cause);
            this.plugin = plugin;
        }
    
        public Plugin getPlugin() {
            return plugin;
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java

                    plugin.getVersion(),
                    "maven-plugin",
                    null,
                    remoteRepositories,
                    null);
            this.plugin = plugin;
        }
    
        public Plugin getPlugin() {
            return plugin;
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                        .allSteps()
                        .flatMap(step -> step.mojos.values().stream().flatMap(map -> map.values().stream()))
                        .map(MojoExecution::getPlugin)
                        .filter(p -> p.getLocation("version") != null
                                && p.getLocation("version").getSource() != null
                                && defaulModelId.equals(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  4. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

            InputSource defaultBindings = new InputSource();
            defaultBindings.setModelId(DefaultLifecycleRegistry.DEFAULT_LIFECYCLE_MODELID);
    
            final Plugin plugin = mojoDescriptor.getPluginDescriptor().getPlugin();
            plugin.setLocation("version", new InputLocation(12, 34, defaultBindings));
            MojoExecution result = new MojoExecution(plugin, goal, executionId);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

                                .map(ModelProblem::getException)
                                .filter(pluginArtifactNotFoundException)
                                .map(exc -> ((PluginResolutionException) exc.getCause()).getPlugin())
                                .anyMatch(isPluginPartOfRequestScope);
                    })
                    .orElse(false);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java

                final MojoExecution mojoExecution = executionPlanItem.getMojoExecution();
                if (!mojoExecution.getMojoDescriptor().isThreadSafe()) {
                    plugins.add(mojoExecution.getPlugin());
                }
            }
            return plugins;
        }
    
        /**
         * Get set of mojos used but not marked @threadSafe
         *
         * @return the set of mojo descriptors
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            return false;
        }
    
        private String pluginDeclaration(MavenSession mavenSession, MojoDescriptor mojoDescriptor) {
            InputLocation inputLocation =
                    mojoDescriptor.getPluginDescriptor().getPlugin().getLocation("");
            if (inputLocation != null && inputLocation.getSource() != null) {
                StringBuilder stringBuilder = new StringBuilder();
                stringBuilder.append(inputLocation.getSource().getModelId());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:32 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                        .collect(Collectors.joining("\n\t"));
                PluginIncompatibleException pie = new PluginIncompatibleException(
                        pluginDescriptor.getPlugin(),
                        "\nThe plugin " + pluginDescriptor.getId() + " has unmet prerequisites: \n\t" + messages);
                prerequisiteExceptions.forEach(pie::addSuppressed);
                throw pie;
            }
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

            final String defaulModelId = DefaultLifecycleRegistry.DEFAULT_LIFECYCLE_MODELID;
    
            List<String> unversionedPlugins = executionPlan.getMojoExecutions().stream()
                    .map(MojoExecution::getPlugin)
                    .filter(p -> p.getLocation("version") != null
                            && p.getLocation("version").getSource() != null
                            && defaulModelId.equals(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  10. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

        }
    
        public String getRequiredJavaVersion() {
            return requiredJavaVersion;
        }
    
        public void setPlugin(Plugin plugin) {
            this.plugin = plugin;
        }
    
        public Plugin getPlugin() {
            return plugin;
        }
    
        public Artifact getPluginArtifact() {
            return pluginArtifact;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 16.2K bytes
    - Viewed (0)
Back to top