- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 37 for mojos (0.01 sec)
-
compat/maven-plugin-api/src/site/apt/index.apt
----- 2012-06-02 ----- Maven 3 Plugin API The API for Maven 3 plugins - composed of goals implemented by Mojos - development: * goal code extends {{{./apidocs/org/apache/maven/plugin/AbstractMojo.html}<<<AbstractMojo>>> base class}} that implements {{{./apidocs/org/apache/maven/plugin/Mojo.html}<<<Mojo>>> interface}}, * {{{./apidocs/org/apache/maven/plugin/logging/Log.html}<<<Log>>> interface}} provides easy logging for the goal.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Nov 16 18:16:44 UTC 2025 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Provides basic services to manage Maven plugins and their mojos. This component is kept general in its design such * that the plugins/mojos can be used in arbitrary contexts. In particular, the mojos can be used for ordinary build * plugins as well as special purpose plugins like reports. * * @since 3.0 */ @Named @Singleton
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 16:35:21 UTC 2025 - 46.4K bytes - Viewed (0) -
compat/maven-plugin-api/pom.xml
<version>4.1.0-SNAPSHOT</version> </parent> <artifactId>maven-plugin-api</artifactId> <name>Maven 3 Plugin API</name> <description>The API for Maven 3 plugins - Mojos - development.</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-xml</artifactId> </dependency> <dependency>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 3.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
} /** * Post-processes the effective configuration for the specified mojo execution. This step discards all parameters * from the configuration that are not applicable to the mojo and injects the default values for any missing * parameters. * * @param mojoExecution The mojo execution whose configuration should be finalized, must not be {@code null}. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
validateVersion( prefix, "version", problems, errOn30, Version.V20, d.getVersion(), d.getManagementKey(), d); /* * Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In * order to not break backward-compat with those, only warn but don't error out. */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 03 15:06:05 UTC 2025 - 66.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterException.java
private final MojoDescriptor mojo; public PluginParameterException(MojoDescriptor mojo, List<Parameter> parameters) { super( mojo.getPluginDescriptor(), "The parameters " + format(parameters) + " for goal " + mojo.getRoleHint() + " are missing or invalid"); this.mojo = mojo; this.parameters = parameters; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 6.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java
org.apache.maven.api.plugin.Mojo mojoV4 = mavenPluginManager.getConfiguredMojo( org.apache.maven.api.plugin.Mojo.class, session, mojoExecution); mojo = new MojoWrapper(mojoV4); } else { mojo = mavenPluginManager.getConfiguredMojo(Mojo.class, session, mojoExecution); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 16:01:38 UTC 2025 - 11.5K bytes - Viewed (0) -
okhttp/okhttp3.pro
# JSR 305 annotations are for embedding nullability information. -dontwarn javax.annotation.** # Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java. -dontwarn org.codehaus.mojo.animal_sniffer.* # OkHttp platform used only on JVM and when Conscrypt and other security providers are available. # May be used with robolectric or deliberate use of Bouncy Castle on Android -dontwarn okhttp3.internal.platform.**
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Jul 19 13:25:00 UTC 2025 - 512 bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/package-info.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /** * Provides annotations for Maven plugin development, including mojo configuration, * parameter definitions, and lifecycle bindings. These annotations are used to * generate plugin descriptors and configure plugin behavior. * * @since 4.0.0 */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Nov 16 22:51:39 UTC 2025 - 1.1K bytes - Viewed (0) -
guava/pom.xml
</execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration>Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 21:36:50 UTC 2025 - 9.6K bytes - Viewed (0)