Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for someLibs (0.13 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            1 * taskSelector.getSelection(_, other.rootProject, "task", false)
        }
    
        def "can use pattern matching to select project"() {
            withIncludedBuilds()
            def p1 = addProject(root, "someLibs")
            def p2 = addProject(root, "otherLibs")
    
            when:
            selector.resolveTaskName(null, null, target, ":sL:task")
    
            then:
            1 * taskSelector.getSelection(_, p1, "task", false)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

            succeeds()
    
            where:
            settings                     | rootProjectName | display
            ""                           | "buildSrc"      | "default root project name"
            "rootProject.name='someLib'" | "someLib"       | "configured root project name"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

            // thus causing :foo:foo and :bar:bar to have separate ClassLoaders.
            File someLib = file('lib/someLib.jar')
            jarWithClasses(someLib, SomeClass: 'class SomeClass {}')
    
            file("foo/build.gradle") << """
                buildscript { dependencies { classpath(files('${someLib.toURI()}')) } }
            """
    
            // Load the StaticData class in the different sub-sub-projects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

        def setup() {
            configurationCache = newConfigurationCacheFixture()
        }
    
        def "build on Java project with no source"() {
            given:
            settingsFile << """
                rootProject.name = 'somelib'
            """
            buildFile << """
                plugins { id 'java' }
            """
    
            when:
            configurationCacheRun "build"
    
            then:
            assertStateStored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithPluginValidation.groovy

                spec.delegate = validation
                spec.resolveStrategy = Closure.DELEGATE_FIRST
                spec()
            }
    
            void onPlugins(List<String> someIds, @DelegatesTo(value = PluginValidation, strategy = Closure.DELEGATE_FIRST) Closure<?> spec) {
                someIds.each {
                    onPlugin(it, spec)
                }
            }
    
            protected void performValidation(List<String> extraParameters = []) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:13:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top