- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for withDependencies (0.12 seconds)
-
build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts
private val moduleToRemove: Set<String> ) : ComponentMetadataRule { override fun execute(context: ComponentMetadataContext) { context.details.allVariants { withDependencies { removeAll { moduleToRemove.contains(it.name) } } } } } abstract class DependencyAdditionRule @Inject constructor( private val coordinates: String
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 26 09:04:32 GMT 2026 - 9.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
managedDependencies.isEmpty() ? null : model.getDependencyManagement().withDependencies(managedDependencies.values())) .withDependencies(directDependencies.isEmpty() ? null : directDependencies.values()); } else { // Even without dependencyManagement, filter direct dependencies to compile/runtime only
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 04 19:49:40 GMT 2026 - 22.3K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
} // Remove gradleApi() and gradleTestKit() as we want to compile/run against Gradle modules // TODO consider splitting `java-gradle-plugin` to provide only what's necessary here configurations.all { withDependencies { remove(project.dependencies.gradleApi()) remove(project.dependencies.gradleTestKit()) } } publishing.publications.withType<MavenPublication>().configureEach {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 11:01:20 GMT 2026 - 6.2K bytes - Click Count (0)