Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for allocAll (0.09 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/plugin/PluginBuilder.groovy

                this.pluginModule = results.pluginModule as HttpModule
                this.markerModules = results.markerModules as List<HttpModule>
            }
    
            PluginHttpPublicationResults allowAll() {
                ([pluginModule] + markerModules)*.allowAll()
                return this
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/extensibility/unit-test-fixtures/src/integTest/groovy/org/gradle/testfixtures/ProjectBuilderIntegrationTest.groovy

            }
        }
    
        def "can resolve remote dependencies"() {
            def repo = new MavenHttpRepository(server, mavenRepo)
            repo.module("org.gradle", "a", "1.0").publish().allowAll()
            server.start()
    
            when:
            project = ProjectBuilder.builder().build()
            project.with {
                repositories {
                    maven { url repo.uri }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top