Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for deleteLocalArtifact (0.06 seconds)

  1. compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java

                        throws Exception {
            Artifact i = createRemoteArtifact("i", "1.0-SNAPSHOT");
            deleteLocalArtifact(i);
    
            Artifact j = createRemoteArtifact("j", "1.0-SNAPSHOT");
            deleteLocalArtifact(j);
    
            ArtifactResolutionResult result = artifactResolver.resolveTransitively(
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Mar 26 10:49:22 GMT 2025
    - 10.1K bytes
    - Click Count (0)
  2. compat/maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java

            Artifact a = artifactFactory.createBuildArtifact(groupId, artifactId, version, type);
    
            return a;
        }
    
        protected void deleteLocalArtifact(Artifact artifact) throws Exception {
            deleteArtifact(artifact, localRepository());
        }
    
        protected void deleteArtifact(Artifact artifact, ArtifactRepository repository) throws Exception {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 10 09:40:15 GMT 2025
    - 13.8K bytes
    - Click Count (0)
Back to Top