- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 28 for transitively (0.07 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) -
okhttp/src/jvmMain/java9/module-info.java
@SuppressWarnings("module") module okhttp3 { requires transitive kotlin.stdlib; requires transitive okio; requires java.logging; exports okhttp3; exports okhttp3.internal to okhttp3.logging, okhttp3.sse, okhttp3.java.net.cookiejar, okhttp3.dnsoverhttps, mockwebserver3, okhttp3.mockwebserver, okhttp3.coroutines, okhttp3.tls; exports okhttp3.internal.concurrent to mockwebserver3, okhttp3.mockwebserver;Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 08:30:26 UTC 2025 - 969 bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t09/ProjectInheritanceTest.java
import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; /** * Verifies exclusions listed in dependencyManagement are valid for * transitive dependencies. * */ @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 - 5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectDependenciesResolver.java
* under the License. */ package org.apache.maven.project; /** * Resolves the transitive dependencies of a project. * * @deprecated use {@code org.apache.maven.api.services.ProjectBuilder} instead */ @Deprecated(since = "4.0.0") public interface ProjectDependenciesResolver { /** * Resolves the transitive dependencies of a project. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 1.5K bytes - Viewed (0) -
buildSrc/src/main/kotlin/JavaModules.kt
if (enableValidation) { compileKotlinTask.source(file("src/main/java9")) } // Ignore warnings about using 'requires transitive' on automatic modules. // not needed when compiling with recent JDKs, e.g. 17 options.compilerArgs.add("-Xlint:-requires-transitive-automatic") // Patch the compileKotlinJvm output classes into the compilation so exporting packages works correctly. options.compilerArgs.addAll(Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 06:22:22 UTC 2025 - 1.9K bytes - Viewed (0)