- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 48 for transitively (0.09 seconds)
-
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts
* of project dependencies. This optimizes module loading during runtime, as we will only load external * modules that are not loaded transitively by other project modules. * * We perform this filtering, since if we simply include all external dependencies, regardless of whether * they are already loaded transitively, there is a measurable performance impact during module-loading.
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri May 16 18:26:52 GMT 2025 - 4.4K bytes - Click Count (0) -
src/README.vendor
go mod tidy go mod vendor Use caution when passing '-u' to 'go get'. The '-u' flag updates modules providing all transitively imported packages, not only the module providing the target package. Note that 'go mod vendor' only copies packages that are transitively imported by packages in the current module. If a new package is needed,Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Sep 30 19:15:39 GMT 2024 - 2.4K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java
* <li>Information on how to use the artifact as a dependency: whether to add it to the classpath, whether to load its * dependencies transitively</li> * </ul> * */ public interface ArtifactHandler { @Deprecated String ROLE = ArtifactHandler.class.getName(); /** * Returns the file name extension of the artifact;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.3K bytes - Click Count (0) -
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. -->Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 29 17:59:17 GMT 2025 - 5K bytes - Click Count (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 {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 3.3K bytes - Click Count (0) -
build-logic-commons/build-platform/build.gradle.kts
.getOrElse(embeddedKotlinVersion) dependencies { constraints { api("org.gradle.guides:gradle-guides-plugin:0.24.0") api("org.apache.ant:ant:1.10.15") // Bump the version brought in transitively by gradle-guides-plugin api("com.gradle:develocity-gradle-plugin:4.3") // Run `java build-logic-settings/UpdateDevelocityPluginVersion.java <new-version>` to update api("com.gradle.publish:plugin-publish-plugin:1.3.1")
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Dec 30 10:16:30 GMT 2025 - 4.6K bytes - Click Count (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts
applyRule<DependencyRemovalByNameRule>(libs.gradleProfiler, setOf("slf4j-simple")) applyRule<DependencyRemovalByNameRule>(libs.samplesCheck, setOf("slf4j-simple")) // GCS transitively depends on commons-logging. // Ensure jcl-over-slf4j is pulled in when we use GCS so it can conflict. applyRule<DependencyAdditionRule>(libs.gcs, libs.jclToSlf4j)
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Jul 18 11:32:19 GMT 2025 - 9.3K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt
} """.trimIndent() ) setupPluginRequirements() } /** * Create projects and files required for plugins applied to the project (including transitively applied plugins). * These files are not required to run the task itself, but are required to apply the binary-compatibility plugin. */ protected fun setupPluginRequirements() {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Nov 29 14:03:44 GMT 2024 - 6K bytes - Click Count (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");
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.8K bytes - Click Count (0) -
compat/maven-compat/src/test/resources/projects/scope/transitive-compile-dep.xml
Guillaume Nodet <******@****.***> 1729859506 +0200
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.7K bytes - Click Count (0)