Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 89 for allocAll (0.17 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpsIntegTest.groovy

            keyStore = TestKeyStore.init(file("keystore"))
            server.start()
    
            ivyRemoteRepo = new IvyHttpRepository(server, "/repo", ivyRepo)
            module = ivyRemoteRepo.module('org.gradle', 'publish', '2').allowAll()
        }
    
        def "publish with server certificate"() {
            given:
            keyStore.enableSslWithServerCert(server)
            initBuild()
    
            when:
            expectPublication()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesChangingModulesIntegrationTest.groovy

        abstract HttpRepository getRepo()
        abstract String getRepoDeclaration()
    
        def moduleA = getRepo().module('org.test', 'moduleA', '1.0')
    
        def setup() {
            moduleA.publish()
            moduleA.allowAll()
        }
    
        def "changing dependency doesn't affect changing flag"() {
            buildFile <<
    """
    $repoDeclaration
    configurations {
        modules
    }
    
    class VerifyingRule implements ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpModule.groovy

        IvyModuleHttpArtifact getArtifact(Map<String, ?> options = [:]) {
            def artifact = backingModule.moduleArtifact(options)
            return new IvyModuleHttpArtifact(server, prefix, artifact)
        }
    
        IvyHttpModule allowAll() {
            server.allowGetOrHead(prefix, backingModule.moduleDir)
            return this
        }
    
        IvyModuleHttpArtifact getIvy() {
            return new IvyModuleHttpArtifact(server, prefix, backingModule.ivy)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

            """
    
            and:
            "align the 'org' group only"()
    
            when:
            allowAllRepositoryInteractions {
                "com.amazonaws:aws-java-sdk-core:1.11.438" {
                    allowAll()
                }
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("com.amazonaws:aws-java-sdk-core:1.11.438") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/VersionedPluginUseIntegrationTest.groovy

        void publishPlugin(String impl, String version) {
            pluginBuilder.addPlugin(impl, PLUGIN_ID, "TestPlugin${version.replace('.', '_')}")
            pluginBuilder.publishAs(GROUP, ARTIFACT, version, pluginRepo, executer).allowAll()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinSettingsScriptIntegrationTest.kt

                PluginBuilder(file("plugin")).run {
                    addSettingsPlugin("println '*42*'", "test.MySettingsPlugin", "MySettingsPlugin")
                    publishAs("g", "m", "1.0", pluginPortal, createExecuter()).allowAll()
                }
    
                withSettings(
                    """
                    plugins {
                        id("test.MySettingsPlugin").version("1.0")
                    }
                    """
                )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/ResolveCrossVersionIntegrationTest.groovy

        </configurations>
        <publications>
            <artifact conf="*" ext="jar" name="io" type="jar"/>
        </publications>
    </ivy-module>"""
    
            and:
            module.allowAll()
    
            and:
            buildFile << """
    repositories {
        if (gradle.gradleVersion == '${current.version.version}' || ${previous.fullySupportsIvyRepository}) {
            ivy { url "${ivyHttpRepo.uri}" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            def repo = mavenHttpRepo("repo")
            repo.getModuleMetaData('group', 'projectA').expectGet()
    
            repo.module('group', 'projectA', '1.5-SNAPSHOT').publish().allowAll()
            repo.module('group', 'projectA', '1.5-RC1').publish().allowAll()
    
            buildFile << createBuildFile(repo.uri)
    
            when:
            succeeds 'retrieve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/VersionInSettingsPluginUseIntegrationTest.groovy

        void publishPlugin(String impl, String version) {
            pluginBuilder.addPlugin(impl, PLUGIN_ID, "TestPlugin${version.replace('.', '_')}")
            pluginBuilder.publishAs(GROUP, ARTIFACT, version, pluginRepo, executer).allowAll()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

        MavenHttpRepository repo
    
        def setup() {
            repo = new MavenHttpRepository(server, mavenRepo)
    
            repo.module("commons-io", "commons-io", "1.4").publish().allowAll()
            repo.module("", "test", "1.3-BUILD-SNAPSHOT").allowAll()
    
            server.start()
        }
    
        @Unroll("jars on buildscript classpath can change (loopNumber: #loopNumber)")
        def "jars on buildscript classpath can change"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top