- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for AbstractArtifactResolutionException (0.19 sec)
-
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java
this.remoteRepositories = remoteRepositories; this.path = constructArtifactPath(path, ""); } protected AbstractArtifactResolutionException(String message, Artifact artifact) { this(message, artifact, null); } protected AbstractArtifactResolutionException( String message, Artifact artifact, List<ArtifactRepository> remoteRepositories) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.1K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionException.java
import java.util.List; import org.apache.maven.artifact.Artifact; import org.apache.maven.artifact.repository.ArtifactRepository; /** */ public class ArtifactResolutionException extends AbstractArtifactResolutionException { @SuppressWarnings("checkstyle:parameternumber") public ArtifactResolutionException( String message, String groupId, String artifactId,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactNotFoundException.java
import java.util.List; import org.apache.maven.artifact.Artifact; import org.apache.maven.artifact.repository.ArtifactRepository; /** */ public class ArtifactNotFoundException extends AbstractArtifactResolutionException { private String downloadUrl; protected ArtifactNotFoundException( String message, Artifact artifact, List<ArtifactRepository> remoteRepositories) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolutionExceptionTest.java
+ " -Durl=[url] -DrepositoryId=[id]" + LS + LS + " Path to dependency: " + LS + " \t1) dependency1" + LS + " \t2) dependency2" + LS + LS; String actual = AbstractArtifactResolutionException.constructMissingArtifactMessage( message, indentation, groupId, artifactId, version, type, classifier, downloadUrl, path); assertEquals(expected, actual); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0)