Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Member (0.26 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/LifecycleConfiguration.java

     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public class LifecycleConfiguration implements java.io.Serializable {
    
        // --------------------------/
        // - Class/Member Variables -/
        // --------------------------/
    
        /**
         * Field lifecycles.
         */
        private java.util.List<Lifecycle> lifecycles;
    
        /**
         * Field modelEncoding.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java

    /**
     * A set of goals to execute.
     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public class Execution implements java.io.Serializable {
    
        // --------------------------/
        // - Class/Member Variables -/
        // --------------------------/
    
        /**
         * Configuration to pass to the goals.
         */
        private Object configuration;
    
        /**
         * Field goals.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java

     *
     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public class Lifecycle implements java.io.Serializable {
    
        // --------------------------/
        // - Class/Member Variables -/
        // --------------------------/
    
        /**
         * The ID of this lifecycle, for identification in the mojo
         * descriptor.
         */
        private String id;
    
        /**
         * Field phases.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

    /**
     * A phase mapping definition.
     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public class Phase implements java.io.Serializable {
    
        // --------------------------/
        // - Class/Member Variables -/
        // --------------------------/
    
        /**
         * The ID of this phase, e.g., <code>generate-sources</code>.
         */
        private String id;
    
        /**
         * Field executions.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Writer.java

    import org.apache.maven.model.v4.MavenStaxWriter;
    
    /**
     * @deprecated Use MavenStaxWriter instead
     */
    @Deprecated
    public class MavenXpp3Writer {
        // --------------------------/
        // - Class/Member Variables -/
        // --------------------------/
    
        private final MavenStaxWriter delegate = new MavenStaxWriter();
    
        // -----------/
        // - Methods -/
        // -----------/
    
        public MavenXpp3Writer() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. maven-model/src/main/java/org/apache/maven/model/InputSource.java

    /**
     * Class InputSource.
     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public class InputSource implements java.io.Serializable, Cloneable {
    
        // --------------------------/
        // - Class/Member Variables -/
        // --------------------------/
    
        /**
         *
         *
         *             The identifier of the POM in the format {@code
         * <groupId>:<artifactId>:<version>}.
         *
         *
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

         * is given by {@link #getSource()}.
         *
         * @return The one-based index of the line containing the problem or a non-positive value if unknown.
         */
        int getLineNumber();
    
        /**
         * Gets the one-based index of the column containing the problem. The column number should refer to some text file
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java

         * is given by {@link #getSource()}.
         *
         * @return The one-based index of the line containing the problem or a non-positive value if unknown.
         */
        int getLineNumber();
    
        /**
         * Gets the one-based index of the column containing the problem. The column number should refer to some text file
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         * The head of returned list is result of {@link Project#getArtifacts()} method, so same applies here: the list can have
         * minimum of one element. The maximum number of elements is in turn dependent on build configuration and lifecycle
         * phase when this method was invoked (i.e. is javadoc jar built and attached, is sources jar built attached, are
         * all the artifact signed, etc.).
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java

    public interface Location {
    
        /**
         * Return the line number where the current event ends,
         * returns -1 if none is available.
         * @return the current line number
         */
        int getLineNumber();
    
        /**
         * Return the column number where the current event ends,
         * returns -1 if none is available.
         * @return the current column number
         */
        int getColumnNumber();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top