Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Wain (0.01 sec)

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

        default ProducedArtifact getPomArtifact() {
            return getArtifacts().get(0);
        }
    
        /**
         * {@return the project main artifact}, which is the artifact produced by this project build, if applicable.
         * This artifact MAY be absent if the project is actually not producing any main artifact (i.e. "pom" packaging).
         *
         * @see #getPackaging()
         * @see org.apache.maven.api.services.ArtifactManager#getPath(Artifact)
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-27 11:07
    - 10.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Shortcut for {@code getService(DependencyResolver.class).flatten(...)}.
         *
         * @param node node for which to get a flattened list
         * @param scope build path scope (main compile, test compile, etc.) of desired nodes
         * @return flattened list of node with the given build path scope
         * @throws org.apache.maven.api.services.DependencyResolverException if the dependency flattening failed
         *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-19 14:33
    - 36.2K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * one specific module. Used for compilation and execution among others.
         *
         * <h4>Context-sensitive interpretation</h4>
         * This path type makes sense only when a main module is added on the module path by another dependency.
         * In no main module is found, the patch dependency may be added on the class path or module path
         * depending on whether {@link #CLASSES} or {@link #MODULES} is present.
         *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-04-05 11:52
    - 15K bytes
    - Viewed (1)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Interface to manage the project state and artifacts during the Maven build lifecycle.
     * This service provides operations to:
     * <ul>
     *   <li>Manage project artifacts (main and attached)</li>
     *   <li>Handle source roots and resources</li>
     *   <li>Access and modify project properties</li>
     *   <li>Manage repository configurations</li>
     *   <li>Handle project forking states</li>
     * </ul>
     *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-01-30 23:29
    - 12K bytes
    - Viewed (0)
Back to top