Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InvalidArtifactRTException (0.18 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

        }
    
        private void validateIdentity() {
            if (empty(groupId)) {
                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The groupId cannot be empty.");
            }
    
            if (artifactId == null) {
                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The artifactId cannot be empty.");
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Feb 09 19:20:54 GMT 2024
    - 14.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

    import org.apache.maven.api.services.model.ModelBuildingListener;
    import org.apache.maven.api.services.model.ModelProcessor;
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.InvalidArtifactRTException;
    import org.apache.maven.artifact.InvalidRepositoryException;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.bridge.MavenRepositorySystem;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
Back to top