- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 127 for mojos (0.01 sec)
-
impl/maven-core/src/site/apt/index.apt
* see effective POM as shown by {{{/plugins/maven-help-plugin/effective-pom-mojo.html}<<<help:effective-pom>>>}} to see the effective plugins then goals order. * <<<MavenPluginManager>>> component ({{{./apidocs/org/apache/maven/plugin/MavenPluginManager.html}javadoc}}),Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/configuration/internal/CompositeBeanHelperPerformanceTest.java
} @Benchmark public void benchmarkOriginalHelper() throws Exception { RealisticTestBean bean = new RealisticTestBean(); // Set multiple properties to simulate real mojo configuration // Use direct method calls instead of reflection for fair comparison PlexusConfiguration nameConfig = new XmlPlexusConfiguration("name"); nameConfig.setValue("testValue");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 17 07:40:49 UTC 2025 - 16.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginExecutionException.java
message = "Execution " + mojoExecution.getExecutionId() + " of goal " + mojoExecution.getMojoDescriptor().getId() + " failed"; } else { message = "Mojo execution failed"; } if (cause != null && cause.getMessage() != null && !cause.getMessage().isEmpty()) { message += ": " + cause.getMessage(); } else { message += ".";
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/test/projects/lifecycle-executor/mojo-configuration/pom.xml
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.maven.lifecycle.test</groupId> <artifactId>mojo-configuration</artifactId> <packaging>jar</packaging> <version>1.0</version> <name>project-with-additional-lifecycle-elements</name> <url>http://maven.apache.org</url> <build> <pluginManagement>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MojoExecutionListener.java
* under the License. */ package org.apache.maven.execution; import org.apache.maven.plugin.MojoExecutionException; /** * <p> * Extension point that allows build extensions observe and possibly veto mojo executions. * </p> * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice. * * @see org.apache.maven.execution.scope.WeakMojoExecutionListener * @since 3.1.2
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DebugConfigurationListener.java
import java.lang.reflect.Array; import org.codehaus.plexus.component.configurator.ConfigurationListener; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Log at debug level the mojo configuration. * */ @Deprecated public class DebugConfigurationListener implements ConfigurationListener { private final Logger logger; /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.8K bytes - Viewed (0) -
pom.xml
<jdk> <version>25</version> </jdk> </toolchains> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <version>${animal-sniffer-maven-plugin.version}</version> <dependencies> <dependency>
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Dec 05 03:10:05 UTC 2025 - 26.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DeprecatedPluginValidator.java
import org.apache.maven.plugin.descriptor.Parameter; import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluator; import org.codehaus.plexus.configuration.PlexusConfiguration; /** * Print warnings if deprecated mojo or parameters of plugin are used in configuration. * */ @Singleton @Named class DeprecatedPluginValidator extends AbstractMavenPluginDescriptorSourcedParametersValidator {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
api/maven-api-model/pom.xml
<goal>xsd</goal> </goals> <phase>generate-sources</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <goals> <goal>attach-artifact</goal> </goals>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Sep 16 12:39:59 UTC 2025 - 3.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Execute.java
import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * Used if your Mojo needs to fork a <a href="/ref/3.0.4/maven-core/lifecycles.html">lifecycle</a>. * * @since 4.0.0 */ @Experimental @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Inherited
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Apr 12 10:50:18 UTC 2024 - 2.2K bytes - Viewed (0)