Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            assertEquals(m, i.next(), "m should be first");
            assertEquals(n, i.next(), "n should be second");
        }
    
        private void printErrors(ArtifactResolutionResult result) {
            if (result.hasMissingArtifacts()) {
                for (Artifact artifact : result.getMissingArtifacts()) {
                    System.err.println("Missing: " + artifact);
                }
            }
    
            if (result.hasExceptions()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

            try {
                result = repositorySystem.resolve(request);
                resolutionErrorHandler.throwErrors(request, result);
            } catch (Exception e) {
                assertTrue(result.hasMissingArtifacts());
            }
        }
    
        @Test
        void testLocalRepositoryBasedir() throws Exception {
            File localRepoDir = new File("").getAbsoluteFile();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top