Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for isAddedToClasspath (0.06 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                final File f = a.getFile();
                if (f != null && scopeFilter.test(a.getScope())) {
                    final ArtifactHandler h = a.getArtifactHandler();
                    if (h.isAddedToClasspath()) {
                        list.add(f.getPath());
                    }
                }
            }
            return list;
        }
    
        /**
         * Returns the elements placed on the classpath for compilation.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

                            id,
                            handler.getExtension(),
                            handler.getClassifier(),
                            handler.getLanguage(),
                            handler.isAddedToClasspath(),
                            handler.isIncludesDependencies())
                    : null;
        }
    
        public static Dependency toDependency(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 04 18:33:16 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top