Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for ReplacedBy (0.11 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

            }
    
            where:
            substitution << [
                """
                dependencies {
                    modules {
                        module("org:foo") {
                            replacedBy("org:baz")
                        }
                    }
                }""",
                """
                configurations.all {
                    resolutionStrategy.eachDependency { details ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

                        version {
                            prefer "2.0"
                        }
                    }
    
                    modules {
                        module("org:original") {
                            replacedBy("org:replaced")
                        }
                    }
                }
            """
    
            repositoryInteractions {
                id(resolved) {
                    expectResolve()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | `@link:{javadocPath}/org/gradle/api/tasks/Internal.html[Internal]`
    | Any type
    | Indicates that the property is used internally but is neither an input nor an output.
    
    | `@link:{javadocPath}/org/gradle/api/model/ReplacedBy.html[ReplacedBy]`
    | Any type
    | Indicates that the property has been replaced by another and should be ignored as an input or output.
    
    | [[skip-when-empty]]`@link:{javadocPath}/org/gradle/api/tasks/SkipWhenEmpty.html[SkipWhenEmpty]`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                    implementation 'org.foo:b:1.0'
                    implementation 'org.foo:d:1.0'
                    implementation 'org.foo:e:1.0'
    
                    modules.module('org.foo:c') { replacedBy('org.foo:f') }
                }
    
                task validate {
                    doLast {
                        LenientConfiguration compile = configurations.compileClasspath.resolvedConfiguration.lenientConfiguration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                    conf 'nebula:java:2.0'
                    conf 'org:b:1.0'
                    conf 'org:g:1.0'
    
                    modules.module('proto:java') {
                        it.replacedBy 'nebula:java'
                    }
                    components.all(AlignGroup.class)
                }
    
                class AlignGroup implements ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    |`@Nested`
    |Property is a nested bean and should be checked for other annotations
    
    |`@Console`
    |Property is not an input or an output and should not be taken into account for up-to-date checking
    
    |`@ReplacedBy`
    |Property is used internally and should not to be taken into account for up-to-date checking
    
    |`@SkipWhenEmpty`
    |Property is a file or directory and the task should be skipped when the value of the property is empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                configurations {
                    conf
                }
    
                dependencies {
                    modules {
                        module("org:child1") {
                            replacedBy("org:direct")
                        }
                    }
                    conf "org:direct:1.0"
                }
            """
    
            expect:
            succeeds 'dependencies', '--configuration', 'conf'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top