- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 81 for transitively (0.15 seconds)
-
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 {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 5K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t10/ProjectInheritanceTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Verifies scope inheritance of direct and transitive dependencies. * * Should show three behaviors: * * 1. dependencyManagement should override the scope of transitive dependencies. * 2. Direct dependencies should override the scope of dependencyManagement. * 3. Direct dependencies should inherit scope from dependencyManagement when
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 3.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionResult.java
*/ DependencyNode getDependencyGraph(); /** * Gets the transitive dependencies of the project that were not excluded by * {@link DependencyResolutionRequest#getResolutionFilter()}. This list is a union of the results from * {@link #getResolvedDependencies()} and {@link #getUnresolvedDependencies()}. * * @return The transitive dependencies, never {@code null}. */ List<Dependency> getDependencies();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 10:13:56 GMT 2025 - 2.7K bytes - Click Count (0) -
doc/go_spec.html
order to a compiler. </p> <p> Dependency analysis does not rely on the actual values of the variables, only on lexical <i>references</i> to them in the source, analyzed transitively. For instance, if a variable <code>x</code>'s initialization expression refers to a function whose body refers to variable <code>y</code> then <code>x</code> depends on <code>y</code>. Specifically: </p>
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue Dec 02 23:07:19 GMT 2025 - 286.5K bytes - Click Count (1) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java
} @Override public List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive) { if (transitive) { throw new RuntimeException("Not implemented yet"); } List<MavenProject> result = new ArrayList<>(); for (Dependency dependency : getDependencies()) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 8.6K bytes - Click Count (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(Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Sep 21 06:22:22 GMT 2025 - 1.9K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
*/ @Nonnull Node collectDependencies(@Nonnull Project project, @Nonnull PathScope scope); /** * Collects the transitive dependencies of some artifacts and builds a dependency graph. Note that this operation is * only concerned about determining the coordinates of the transitive dependencies and does not actually resolve the * artifact files. * <p>Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jul 03 14:18:26 GMT 2025 - 36.5K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DependencyCoordinates.java
* This information includes the dependency type (main classes, test classes, <i>etc.</i>), * a scope (compile, runtime <i>etc.</i>), an obligation (whether the dependency * is optional or mandatory), and possible exclusions for transitive dependencies. * The {@linkplain #getVersionConstraint() version} and the {@linkplain #getOptional() obligation} * may not be defined precisely. * * @since 4.0.0 */ @Experimental @Immutable
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 05 14:29:21 GMT 2025 - 2.5K bytes - Click Count (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSessionBuilderSupplier.java
} protected DependencyManager getDependencyManager() { return getDependencyManager(true); // same default as in Maven4 } public DependencyManager getDependencyManager(boolean transitive) { return transitive ? new TransitiveDependencyManager(getScopeManager()) : new ClassicDependencyManager(getScopeManager()); } protected DependencySelector getDependencySelector() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 10 09:40:15 GMT 2025 - 7.9K bytes - Click Count (0) -
build-logic/build-init-samples/build.gradle.kts
implementation(projects.jvm) implementation("gradlebuild:basics") implementation("org.gradle.guides:gradle-guides-plugin") implementation("org.asciidoctor:asciidoctor-gradle-jvm") { because("This is a transitive dependency of 'gradle-guides-plugin' not declared there") }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jun 24 13:46:12 GMT 2025 - 476 bytes - Click Count (0)