Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for artifactCoordinates (0.18 sec)

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

    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * {@code ArtifactCoordinates} completed with information about how the artifact will be used.
     * This information include the dependency type (main classes, test classes, <i>etc.</i>),
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * @return dependency coordinates for the given artifact
         *
         * @see DependencyCoordinatesFactory#create(Session, ArtifactCoordinates)
         */
        @Nonnull
        DependencyCoordinates createDependencyCoordinates(@Nonnull ArtifactCoordinates coordinates);
    
        /**
         * Shortcut for {@code getService(DependencyFactory.class).create(...)}.
         *
         * @param dependency dependency for which to get the coordinates
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 16:43:07 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactoryRequest.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services;
    
    import org.apache.maven.api.ArtifactCoordinates;
    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    import org.apache.maven.api.annotations.Nonnull;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     * specific language governing permissions and limitations
     * under the License.
     */
    
    /**
     * <h2>Maven Core API</h2>
     *
     * <h3>Dependency management</h3>
     *
     * <p>{@link org.apache.maven.api.ArtifactCoordinates} instances are used to locate artifacts in a repository.
     * Each instance is basically a pointer to a file in the Maven repository, except that the version may not be
     * defined precisely.</p>
     *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java

     * under the License.
     */
    package org.apache.maven.api.services;
    
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Collections;
    
    import org.apache.maven.api.ArtifactCoordinates;
    import org.apache.maven.api.Dependency;
    import org.apache.maven.api.Exclusion;
    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Experimental;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top