Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 889 for Plugin0 (0.12 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

    - Fixed a regression since 1.24 in the scheduling framework when overriding MultiPoint plugins (e.g. default plugins).
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

                            Plugin plugin = new Plugin();
                            plugin.setLocation("", element.getLocation(""));
                            plugin.setGroupId(null);
                            mergePlugin(plugin, element, sourceDominant, context);
    
                            Object key = getPluginKey(element);
    
                            master.put(key, plugin);
                        }
                    }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java

    import org.apache.maven.lifecycle.internal.MojoExecutor;
    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.BuildPluginManager;
    import org.apache.maven.plugin.MavenPluginManager;
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.plugin.MojosExecutionStrategy;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.project.MavenProject;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  4. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/TestUtils.java

        }
    
        /**
         * Creates upgrade options with only the --plugins option set.
         *
         * @param plugins the --plugins option value
         * @return configured upgrade options
         */
        public static UpgradeOptions createOptionsWithPlugins(boolean plugins) {
            return createOptions(null, null, null, plugins, null);
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_message.properties

    success.reindex_started=Started re-indexing.
    success.bulk_process_started=Started a bulk process.
    success.print_thread_dump=Printed a thread dump to a log file.
    success.install_plugin=Installing plugin {0}.
    success.delete_plugin=Deleting plugin {0}.
    success.upload_file_to_storage=Uploaded {0}.
    success.sso_logout=You have been logged out.
    success.update_storage_tags=Updated tags of {0}.
    
    success.crud_create_crud_table = Created the data.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_en.properties

    success.reindex_started=Started re-indexing.
    success.bulk_process_started=Started a bulk process.
    success.print_thread_dump=Printed a thread dump to a log file.
    success.install_plugin=Installing plugin {0}.
    success.delete_plugin=Deleting plugin {0}.
    success.upload_file_to_storage=Uploaded {0}.
    success.sso_logout=You have been logged out.
    success.update_storage_tags=Updated tags of {0}.
    
    success.crud_create_crud_table = Created the data.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginIncompatibleException.java

     * under the License.
     */
    package org.apache.maven.plugin;
    
    import org.apache.maven.model.Plugin;
    
    /**
     * Signals a plugin which is not compatible with the current Maven runtime.
     */
    public class PluginIncompatibleException extends PluginManagerException {
    
        public PluginIncompatibleException(Plugin plugin, String message) {
            this(plugin, message, null);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/Help.java

            context.info("    --plugins         Upgrade plugins known to fail with Maven 4");
            context.info(
                    "-a, --all             Apply all upgrades (equivalent to --model-version 4.1.0 --infer --model --plugins)");
            context.unindent();
            context.println();
            context.info("Default behavior: --model and --plugins are applied if no other options are specified");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:46:51 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java

                List<Plugin> src = source.getPlugins();
                if (!src.isEmpty()) {
                    List<Plugin> tgt = target.getPlugins();
                    Map<Object, Plugin> master = new LinkedHashMap<>(tgt.size() * 2);
    
                    for (Plugin element : tgt) {
                        Object key = getPluginKey(element);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.32.md

    - Fixed a bug which the scheduler didn't correctly tell plugins Node deletion.
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Tue Dec 16 18:27:41 UTC 2025
    - 448.1K bytes
    - Viewed (0)
Back to top