- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 51 for transitively (0.04 sec)
-
android/guava-testlib/pom.xml
</dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <!-- *not* <scope>test</scope>; <scope>compile</scope> is right so that guava-testlib users get junit transitively. --> <version>${junit.version}</version> </dependency> <dependency> <!-- Do not include Truth in non-test scope! Doing so creates a problematic dependency cycle. -->Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 29 17:59:17 UTC 2025 - 5K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Verifies the version of a dependency listed in a parent's * dependencyManagement section is chosen over another version of the same * dependency, listed transitively. * */ @Deprecated @SuppressWarnings("checkstyle:UnusedLocalVariable") class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 3.3K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java
} @Test void testThatASystemScopedDependencyIsNotResolvedFromRepositories() throws Exception { // // We should get a whole slew of dependencies resolving this artifact transitively // Dependency d = new Dependency(); d.setGroupId("org.apache.maven.its"); d.setArtifactId("b"); d.setVersion("0.1"); d.setScope(Artifact.SCOPE_COMPILE);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 11.1K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/SubscriberRegistry.java
ImmutableSet.copyOf(TypeToken.of(concreteClass).getTypes().rawTypes()))); /** * Flattens a class's type hierarchy into a set of {@code Class} objects including all * superclasses (transitively) and all interfaces implemented by these superclasses. */ @VisibleForTesting static ImmutableSet<Class<?>> flattenHierarchy(Class<?> concreteClass) { return flattenHierarchyCache.getUnchecked(concreteClass);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 10.8K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
See <a href="https://s.apache.org/dependency-version">dependency version requirement documentation</a> and <a href="https://s.apache.org/transitive-dependencies-resolution">transitive dependencies resolution</a> for more details. ]]> </description> <type>String</type> </field> <field> <name>type</name>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 26 03:07:35 UTC 2025 - 133.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/graph/DefaultProjectDependencyGraphTest.java
Arrays.asList(depender1, transitiveOnly, depender2, depender3, aProject)); final List<MavenProject> downstreamProjects = graph.getDownstreamProjects(aProject, true); assertEquals(depender1, downstreamProjects.get(0)); assertEquals(depender3, downstreamProjects.get(1)); assertEquals(transitiveOnly, downstreamProjects.get(2));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 10.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/graph/FilteredProjectDependencyGraphTest.java
void downstreamProjectsShouldBeCached(boolean transitive) { FilteredProjectDependencyGraph graph = new FilteredProjectDependencyGraph(projectDependencyGraph, List.of(aProject)); when(projectDependencyGraph.getDownstreamProjects(bProject, transitive)).thenReturn(List.of(cProject)); graph.getDownstreamProjects(bProject, transitive); graph.getDownstreamProjects(bProject, transitive);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 04 20:56:29 UTC 2025 - 3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java
for (String id : sorter.getDependents(projectId)) { if (projectIds.add(id) && transitive) { getDownstreamProjects(id, projectIds, transitive); } } } @Override public List<MavenProject> getUpstreamProjects(MavenProject project, boolean transitive) { Objects.requireNonNull(project, "project cannot be null");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/ProjectClasspathTestType.java
checkArtifactIdScope(project, "default", "compile"); // check all transitive deps of a test dependency are test, except test and provided which is skipped artifact = getArtifact(project, "maven-test-test", "scope-provided"); assertNull(artifact, "Check no provided dependencies are transitive"); artifact = getArtifact(project, "maven-test-test", "scope-test");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 6.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
Key key = new Key(project, transitive, false); // Do not use computeIfAbsent here, as the computation is recursive // and this is not supported by computeIfAbsent. List<MavenProject> list = cache.get(key); if (list == null) { list = applyFilter(projectDependencyGraph.getDownstreamProjects(project, transitive), transitive, false);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jun 19 16:34:39 UTC 2025 - 6.4K bytes - Viewed (0)