Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 590 for pluginId (0.13 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

     *
     * <p>Common packaging types include {@code jar}, {@code war}, {@code pom}, {@code maven-plugin}, {@code ear}, and others.
     * These types influence various aspects of the build lifecycle, such as which plugins are executed and how dependencies are managed.</p>
     *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/Mojo.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin;
    
    import org.apache.maven.api.annotations.ThreadSafe;
    import org.apache.maven.plugin.logging.Log;
    
    /**
     * This interface forms the contract required for <code>Mojos</code> to interact with the <code>Maven</code>
     * infrastructure.<br>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. compat/maven-model-builder/pom.xml

          <scope>test</scope>
        </dependency>
      </dependencies>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.eclipse.sisu</groupId>
            <artifactId>sisu-maven-plugin</artifactId>
          </plugin>
          <plugin>
            <groupId>com.github.siom79.japicmp</groupId>
            <artifactId>japicmp-maven-plugin</artifactId>
            <configuration>
              <oldVersion>
                <dependency>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/site/apt/index.apt

       ({{{./xref/org/apache/maven/model/plugin/DefaultReportingConverter.html}source}})
    
       ** <(optional)> plugins configuration: <<<PluginConfigurationExpander>>> ({{{./apidocs/org/apache/maven/model/plugin/PluginConfigurationExpander.html}javadoc}}),
       with its <<<DefaultPluginConfigurationExpander>>> implementation
       ({{{./xref/org/apache/maven/model/plugin/DefaultPluginConfigurationExpander.html}source}})
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

     * <a href="https://maven.apache.org/components/plugin-tools/maven-plugin-tools-annotations/index.html" target="_blank">
     * Maven Plugin Tool for Annotations</a>.
     *
     * @see <a href="https://maven.apache.org/guides/plugin/guide-java-plugin-development.html" target="_blank">Guide to Developing Java Plugins</a>
     * @see <a href="https://maven.apache.org/guides/mini/guide-configuring-plugins.html" target="_blank">Guide to Configuring Plug-ins</a>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/main/assemblies/common-bin.xml

    			<directory>${project.basedir}/modules</directory>
    			<outputDirectory>fess-${project.version}/es/modules</outputDirectory>
    		</fileSet>
    		<!-- es/plugins -->
    		<fileSet>
    			<directory>${project.basedir}/plugins</directory>
    			<outputDirectory>fess-${project.version}/es/plugins</outputDirectory>
    		</fileSet>
    		<!-- es/data -->
    		<fileSet>
    			<directory>src/main/assemblies/files</directory>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Mar 17 02:29:43 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

            String INSTALL = "install";
            String DEPLOY = "deploy";
            String CLEAN = "clean";
    
            @Nonnull
            String name();
    
            @Nonnull
            List<Plugin> plugins();
    
            @Nonnull
            Collection<Link> links();
    
            /**
             * {@return the list of sub-phases}
             */
            @Nonnull
            List<Phase> phases();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Sep 24 07:54:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                // MNG-1911 / MNG-5572: Building plugins with extensions cannot be part of reactor
                for (Plugin plugin : project.getBuildPlugins()) {
                    if (plugin.isExtensions()) {
                        String pluginKey =
                                ArtifactUtils.key(plugin.getGroupId(), plugin.getArtifactId(), plugin.getVersion());
    
                        if (projectsMap.containsKey(pluginKey)) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

                }
    
                project.getDependencies().add(d);
    
                return this;
            }
    
            // Plugins
            //
            public ProjectBuilder addPlugin(Plugin plugin) {
                project.getBuildPlugins().add(plugin);
                return this;
            }
    
            public MavenProject get() {
                return project;
            }
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - component not found
    
    Plugins:
    - plugin metadata missing
    - plugin metadata retrieval problem
    - plugin artifact missing
    - plugin artifact retrieval problem
    - plugin dependency metadata missing
    - plugin dependency metadata retrieval problem
    - plugin configuration problem
    - plugin execution failure due to something that is know to possibly go wrong (like compilation failure)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top