Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for someLib (0.11 sec)

  1. 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)
  2. 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)
Back to top