Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 541 for myplugins (0.05 sec)

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

                scope.seed(org.apache.maven.api.MojoExecution.class, new DefaultMojoExecution(sessionV4, mojoExecution));
    
                if (mojoDescriptor.isV4Api()) {
                    // For Maven 4 plugins, register a service so that they can be directly injected into plugins
                    Map<Class<? extends Service>, Supplier<? extends Service>> services = sessionV4.getAllServices();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  2. docs/es/README.md

    2. Importa el repositorio clonado como un proyecto [Maven](https://maven.apache.org/) en [Eclipse](https://www.eclipse.org/eclipseide/) u otro IDE.
    
    ### Configuración de Plugins para OpenSearch
    
    Ejecuta antrun:run para descargar los plugins en el directorio de plugins:
    
        $ mvn antrun:run
    
    ### Ejecutar Fess
    
    Ejecuta o depura `org.codelibs.fess.FessBoot` en tu IDE, y luego accede a http://localhost:8080/
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Tue Nov 11 22:42:32 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

                checkUnknownMojoConfigurationParameters(mojoExecution);
            }
        }
    
        private Plugin findPlugin(String groupId, String artifactId, Collection<Plugin> plugins) {
            for (Plugin plugin : plugins) {
                if (artifactId.equals(plugin.getArtifactId()) && groupId.equals(plugin.getGroupId())) {
                    return plugin;
                }
            }
    
            return null;
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  4. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemUtils.java

    /**
     * A utility class to assist in setting up a Maven-like repository system. Note: This component is meant to
     * assist those clients that employ the repository system outside of an IoC container, Maven plugins should instead
     * always use regular dependency injection to acquire the repository system.
     *
     * @deprecated See {@link MavenSessionBuilderSupplier}
     */
    @Deprecated
    public final class MavenRepositorySystemUtils {
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. impl/maven-core/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.plugins</groupId>
      <artifactId>maven-it-plugin</artifactId>
      <version>0.1</version>
      <packaging>maven-plugin</packaging>
    
      <name>Maven Integration Test Plugin</name>
      <description>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. .generated_files

    # Files that should be ignored by tools which do not want to consider generated
    # code.
    #
    # https://github.com/kubernetes/test-infra/blob/master/prow/plugins/size/size.go
    #
    # This file is a series of lines, each of the form:
    #     <type> <name>
    #
    # Type can be:
    #    path - an exact path to a single file
    #    file-name - an exact leaf filename, regardless of path
    #    path-prefix - a prefix match on the file path
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Tue Oct 04 23:47:25 UTC 2022
    - 750 bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

                    .setPom(pom)
                    .setProjectPresent(true)
                    .setShowErrors(true)
                    .setPluginGroups(Arrays.asList("org.apache.maven.plugins"))
                    .setLocalRepository(getLocalRepository())
                    .setRemoteRepositories(getRemoteRepositories())
                    .setPluginArtifactRepositories(getPluginArtifactRepositories())
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 20:01:00 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * In particular, this method can be changed or deleted without prior notice and must not be used by plugins.
         *
         * @param extensionDependencyFilter The dependency filter to apply to plugins, may be {@code null}.
         */
        public void setExtensionDependencyFilter(DependencyFilter extensionDependencyFilter) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  9. api/maven-api-plugin/src/main/java/org/apache/maven/api/plugin/descriptor/lifecycle/package-info.java

     * specific language governing permissions and limitations
     * under the License.
     */
    
    /**
     * Contains classes for managing plugin-specific lifecycle bindings and forked executions.
     * This package helps define how plugins can modify or extend Maven's build lifecycle.
     *
     * @since 4.0.0
     */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 04 14:17:18 UTC 2025
    - 1K bytes
    - Viewed (0)
  10. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuilderFactory.java

     * is only meant as a utility for developers that want to employ the settings builder outside of the Maven build system,
     * Maven plugins should always acquire settings builder instances via dependency injection. Developers might want to
     * subclass this factory to provide custom implementations for some of the components used by the settings builder.
     *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top