Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Kissling (0.21 sec)

  1. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - artifact metadata missing
    - extension metadata missing
    - extension artifact missing
    - artifact metadata retrieval problem
    - version range violation
    - circular dependency
    - artifact missing
    - artifact retrieval exception
    - md5 checksum doesn't match for local artifact, need to redownload this
    - POM doesn't exist for a goal that requires one
    - parent POM missing (in both the repository + relative path)
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

                            .exists(settingsFile.getExists())
                            .missing(settingsFile.getMissing())
                            .location("exists", toLocation(settingsFile.getLocation("exists")))
                            .location("missing", toLocation(settingsFile.getLocation("missing")))
                            .build());
                }
    
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                        missingDescriptor(session, trace, a, (Exception) e.getCause());
                        if ((getPolicy(session, a, request) & ArtifactDescriptorPolicy.IGNORE_MISSING) != 0) {
                            return null;
                        }
                    }
                    result.addException(e);
                    throw new ArtifactDescriptorException(result);
                }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.9K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            assertThat(
                    e.getResults(),
                    contains(projectBuildingResultWithProblemMessage(
                            "'dependencies.dependency.version' for org.apache.maven.its:a:jar is missing")));
            assertThat(e.getResults(), contains(projectBuildingResultWithLocation(5, 9)));
        }
    
        @Test
        void testResolveDependencies() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 18.2K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

        @Inject
        private ArtifactRepositoryFactory artifactRepositoryFactory;
    
        @Test
        void testUnnecessaryRepositoryLookup() throws Exception {
            Artifact artifact = createTestPomArtifact("target/test-data/get-missing-pom");
    
            List<ArtifactRepository> repos = new ArrayList<>();
            repos.add(artifactRepositoryFactory.createArtifactRepository(
                    "repo1", "string://url1", new ArtifactRepositoryLayoutStub(), null, null));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

                return false;
            }
    
            if (!string.isEmpty()) {
                return true;
            }
    
            addViolation(problems, BuilderProblem.Severity.ERROR, fieldName, sourceHint, "is missing");
    
            return false;
        }
    
        /**
         * Asserts:
         * <p/>
         * <ul>
         * <li><code>string != null</code>
         * </ul>
         */
        private static boolean validateNotNull(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                    request.getLocalRepository(),
                    request.getRemoteRepositories());
    
            if (cached != null
                    // if the POM has no file, we cached a missing artifact, only return the cached data if no update forced
                    && (!request.isForceUpdate() || hasFile(cached.getPomArtifact()))) {
                return cached;
            }
    
            List<Dependency> dependencies;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 30.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                            // 1 extra '/' to remove
                            url.setLength(url.length() - 1);
                        }
                    } else if (!initialUrlEndsWithSlash) {
                        // add missing '/' between url and path
                        url.append('/');
                    }
    
                    url.append(path);
    
                    // ensure resulting url ends with slash if initial url was
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                selectedProjects.addAll(
                        projectSelector.getOptionalProjectsBySelectors(request, allSortedProjects, optionalSelectors));
    
                // it can be empty when an optional project is missing from the reactor, fallback to returning all projects
                if (!selectedProjects.isEmpty()) {
                    result = new ArrayList<>(selectedProjects);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
  10. maven-compat/src/main/mdo/profiles.mdo

            This is the file specification used to activate a profile. The missing value will be a the location
            of a file that needs to exist, and if it doesn't the profile must run.  On the other hand exists will test
            for the existence of the file and if it is there will run the profile.
          ]]></description>
          <fields>
            <field>
              <name>missing</name>
              <version>1.0.0</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 03 21:08:35 GMT 2023
    - 13.8K bytes
    - Viewed (0)
Back to top