Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bond (0.14 sec)

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

    import org.apache.maven.api.xml.XmlNode;
    
    /**
     * A {@code MojoExecution} represents a single execution of a Maven Plugin during a given build.
     * An instance of this object is bound to the {@link org.apache.maven.api.di.MojoExecutionScoped}
     * and available as {@code mojoExecution} within {@link org.apache.maven.api.plugin.annotations.Parameter}
     * expressions.
     *
     * @since 4.0.0
     */
    @Experimental
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

             */
            CLI,
    
            /**
             * An execution that originates from a goal bound to a lifecycle phase.
             */
            LIFECYCLE,
        }
    
        private Source source = Source.LIFECYCLE;
    
        /**
         * The phase may or may not have been bound to a phase but once the plan has been calculated we know what phase
         * this mojo execution is going to run in.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 03 15:52:23 GMT 2023
    - 6.2K bytes
    - Viewed (0)
Back to top