Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for testObj (0.14 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

            buildA.buildFile << """
                dependencies {
                    implementation "org.test:b1:1.0"
                    implementation "org.test:b2:1.0"
                }
            """
    
            when:
            checkDependencies()
    
            then:
            checkGraph {
                edge("org.test:b1:1.0", ":buildB:b1", "org.test:b1:2.0") {
                    configuration = "runtimeElements"
                    compositeSubstitute()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildEventsIntegrationTest.groovy

            given:
            def pluginBuild = pluginProjectBuild("pluginD")
            applyPlugin(buildA, "pluginD")
            includeBuild pluginBuild
    
            dependency 'org.test:b1:1.0'
            dependency(pluginBuild, 'org.test:b2:1.0')
    
            when:
            execute()
    
            then:
            events(23)
            loggedOncePerBuild('buildListener.settingsEvaluated', [':', ':buildB', ':buildC', ':pluginD'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactDeclarationIntegrationTest.groovy

                        compile project(':a')
                    }
                }
            """
    
            expect:
            succeeds "b:checkDeps"
            resolve.expectGraph {
                root(":b", "test:b:") {
                    project(":a", "test:a:") {
                        artifact(name: 'foo', type: '')
                        artifact(name: 'foo', type: 'txt')
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalDependencyWithGradleMetadataResolutionIntegrationTest.groovy

                root(":", ":test:") {
                    module("test:a:1.2") {
                        artifact(classifier: "debug")
                        configuration("debug")
                        edge("test:b:{prefer 2.0}", "test:b:2.0")
                    }
                }
            }
    
            when:
            run("checkRelease")
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

            then:
            executedAndNotSkipped ':includedBuild:fooJar'
            notExecuted ':includedBuild:barJar'
            resolve.expectGraph {
                root(':a', 'test:a:') {
                    project(':b', 'test:b:') {
                        artifact(name: 'b-transitive')
                        edge('com.acme.external:external:1.0', ':includedBuild', 'com.acme.external:external:2.0-SNAPSHOT') {
                            compositeSubstitute()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

    }
    """
            resolve.prepare()
    
            when:
            succeeds ':b:checkDeps'
    
            then:
            executedAndNotSkipped ":a:jar"
            resolve.expectGraph {
                root(":b", "test:b:") {
                    project(":a", 'test:a:') {
                        notRequested()
                        byReason('can provide a dependency reason for project dependencies too')
                        variant('runtime')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/PublishedCapabilitiesIntegrationTest.groovy

                        capability('cap')
                    }
                }
                'org:testB:1.0' {
                    variant('runtime') {
                        capability('org', 'testB', '1.0')
                        capability('cap')
                    }
                }
            }
    
            buildFile << """
                dependencies {
                    conf 'org:testA:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                if (gradleConfiguration == 'compileOnlyApi') {
                    assertCompileOnlyApiDependencies('org.gradle.test:b:1.2')
                } else {
                    javaLibrary.assertApiDependencies('org.gradle.test:b:1.2')
                }
            } else {
                javaLibrary.assertRuntimeDependencies('org.gradle.test:b:1.2')
            }
    
            where:
            plugin         | gradleConfiguration | mavenScope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            given:
            buildA.buildFile.prepend("""
                buildscript {
                    dependencies {
                        classpath 'org.test:b1:1.0'
                    }
                }
            """)
            dependency "org.test:b2:1.0"
    
            when:
            execute(buildA, ":jar")
    
            then:
            executed ":buildB:b1:jar", ":buildB:b2:jar"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top