Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 471 for artifactId (0.27 sec)

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

         */
        Model getRawModel(Path from, Path pomFile);
    
        /**
         * Get the model from the reactor based on the groupId and artifactId when resolving reactor dependencies.
         *
         * @param from    the requiring model
         * @param groupId    the groupId
         * @param artifactId the artifactId
         * @return the model, otherwise {@code null}
         * @throws IllegalStateException if multiple versions of the same GA are part of the reactor
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

            if (p.length == 3) {
                // <groupId>:<artifactId>:<goal>
                gs.groupId = p[0];
                gs.artifactId = p[1];
                gs.goal = p[2];
            } else if (p.length == 4) {
                // <groupId>:<artifactId>:<version>:<goal>
                gs.groupId = p[0];
                gs.artifactId = p[1];
                gs.version = p[2];
                gs.goal = p[3];
            } else {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java

    import org.apache.maven.artifact.versioning.OverConstrainedVersionException;
    import org.apache.maven.artifact.versioning.VersionRange;
    
    /**
     * Maven Artifact interface. Notice that it mixes artifact definition concepts (groupId, artifactId, version)
     * with dependency information (version range, scope).
     */
    public interface Artifact extends Comparable<Artifact> {
    
        String RELEASE_VERSION = "RELEASE";
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Feb 09 17:47:51 GMT 2023
    - 4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelProblemUtils.java

         * @param artifactId The artifact id, may be {@code null}.
         * @param version The version, may be {@code null}.
         * @return The user-friendly artifact id, never {@code null}.
         */
        static String toId(String groupId, String artifactId, String version) {
            return ((groupId != null && !groupId.isEmpty()) ? groupId : "[unknown-group-id]")
                    + ':'
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinate.java

     * but the version may be specified as a range instead of an exact version.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface ArtifactCoordinate {
    
        /**
         * The groupId of the artifact.
         *
         * @return the groupId
         */
        @Nonnull
        String getGroupId();
    
        /**
         * The artifactId of the artifact.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExports.java

    import static java.util.stream.Collectors.toMap;
    
    /**
     * Provides information about artifacts (identified by groupId:artifactId string key) and classpath elements exported by
     * Maven core itself and loaded Maven core extensions.
     *
     * @since 3.3.0
     */
    public class CoreExports {
        private final Set<String> artifacts;
    
        private final Map<String, ClassLoader> packages;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java

            private final String groupId;
    
            private final String artifactId;
    
            private final int hashCode;
    
            GAKey(String groupId, String artifactId) {
                this.groupId = (groupId != null) ? groupId : "";
                this.artifactId = (artifactId != null) ? artifactId : "";
    
                hashCode = Objects.hash(this.groupId, this.artifactId);
            }
    
            @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

                }
    
                if (!(obj instanceof CacheKey)) {
                    return false;
                }
    
                CacheKey that = (CacheKey) obj;
    
                return Objects.equals(this.artifactId, that.artifactId)
                        && Objects.equals(this.groupId, that.groupId)
                        && Objects.equals(this.version, that.version)
                        && Objects.equals(this.localRepo, that.localRepo)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionRequest.java

        /**
         * Gets the artifact id of the plugin.
         *
         * @return The artifact id of the plugin.
         */
        String getArtifactId();
    
        /**
         * Sets the artifact id of the plugin.
         *
         * @param artifactId The artifact id of the plugin.
         * @return This request, never {@code null}.
         */
        PluginVersionRequest setArtifactId(String artifactId);
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

        Artifact createArtifact(String groupId, String artifactId, String version, String packaging);
    
        Artifact createArtifact(String groupId, String artifactId, String version, String scope, String type);
    
        Artifact createProjectArtifact(String groupId, String artifactId, String version);
    
        Artifact createArtifactWithClassifier(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
Back to top