Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DependencyResolutionRequiredException (0.26 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/DependencyResolutionRequiredException.java

     *
     * TODO it may be better for artifact.getFile() to throw it - perhaps it is a runtime exception?
     */
    public class DependencyResolutionRequiredException extends Exception {
        public DependencyResolutionRequiredException(Artifact artifact) {
            super("Attempted to access the artifact " + artifact + "; which has not yet been resolved");
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * @return paths of all artifacts placed on the classpath.
         * @throws DependencyResolutionRequiredException if an artifact file is used, but has not been resolved
         */
        private List<String> getClasspathElements(final Predicate<String> scopeFilter, final boolean includeTestDir)
                throws DependencyResolutionRequiredException {
            final List<String> list = new ArrayList<>(getArtifacts().size() + 2);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
Back to top