Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for checkPrerequisites (0.06 sec)

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

        /**
         * Verifies the specified plugin is compatible with the current Maven runtime.
         *
         * @param pluginDescriptor The descriptor of the plugin to check, must not be {@code null}.
         * @deprecated Use {@link #checkPrerequisites(PluginDescriptor)} instead.
         */
        @Deprecated
        void checkRequiredMavenVersion(PluginDescriptor pluginDescriptor) throws PluginIncompatibleException;
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

            } catch (Exception e) {
                // ignore for now and delay failure to higher level processing
                return true;
            }
    
            try {
                pluginManager.checkPrerequisites(pluginDescriptor);
            } catch (PluginIncompatibleException e) {
                if (logger.isDebugEnabled()) {
                    logger.warn("Ignoring incompatible plugin version {}:", version, e);
                } else {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jan 29 08:17:07 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            if (mojoDescriptor == null) {
                throw new MojoNotFoundException(goal, pluginDescriptor);
            }
    
            return mojoDescriptor;
        }
    
        @Override
        public void checkPrerequisites(PluginDescriptor pluginDescriptor) throws PluginIncompatibleException {
            List<IllegalStateException> prerequisiteExceptions = new ArrayList<>();
            prerequisitesCheckers.forEach(c -> {
                try {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                throws LifecycleExecutionException {
            MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
    
            try {
                mavenPluginManager.checkPrerequisites(mojoDescriptor.getPluginDescriptor());
            } catch (PluginIncompatibleException e) {
                throw new LifecycleExecutionException(messageBuilderFactory, mojoExecution, session.getCurrentProject(), e);
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 12 14:55:55 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top