Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Repository$Maven (0.34 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

    5 artifacts failed verification:
      - bar-1.0.jar (org:bar:1.0) from repository maven
      - foo-1.0.jar (org:foo:1.0) from repository maven
      - foo-1.0.pom (org:foo:1.0) from repository maven
      - bar-1.0.pom (org:bar:1.0) from repository maven
      - baz-1.0.pom (org:baz:1.0) from repository maven"""
    
                whenVerbose """Dependency verification failed for configuration ':compileClasspath':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

          - in repository 'maven': artifact was signed but all keys were ignored
          - in repository 'maven': checksum is missing from verification metadata.
      - On artifact foo-1.0.pom (org:foo:1.0) multiple problems reported:
          - in repository 'maven': artifact was signed but all keys were ignored
          - in repository 'maven': checksum is missing from verification metadata."""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRendererTest.groovy

                artifact == 'foo-1.0.jar'
                artifactTooltip == "From repository 'Maven'"
                problem == "Expected a sha256 checksum of 0abcd but was 0000"
            }
            verifyAll(errors1[1]) {
                module == 'org:foo:1.0'
                artifact == 'foo-1.0.jar'
                artifactTooltip == "From repository 'Maven'"
                problem == "Signature file is missing"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpsIntegTest.groovy

            executer.withStackTraceChecksDisabled() // Jetty logs stuff to console
            fails 'publish'
    
            then:
            failure.assertHasCause("Failed to publish publication 'maven' to repository 'maven'")
            failure.assertHasCause("Could not write to resource '${module.artifact.uri}")
        }
    
        def "build fails when server can't authenticate client"() {
            keyStore.enableSslWithServerAndBadClientCert(server)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/initScripts/plugins/groovy/init.gradle

                            remove repo
                        }
                    }
    
                    // add the enterprise repository
                    maven {
                        name "STANDARD_ENTERPRISE_REPO"
                        url ENTERPRISE_REPOSITORY_URL
                    }
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. testing/performance/src/templates/config-inject/build.gradle

    subprojects {
    
    apply plugin: 'java'
    apply plugin: 'eclipse'
    apply plugin: 'idea'
    
    repositories {
    <% if (repository) { %>
        maven {
            url rootProject.file("${repository.rootDir.name}").toURI().toURL()
        }
    <% } %>
        mavenCentral()
    }
    
    dependencies {
        implementation 'commons-lang:commons-lang:2.5'
        implementation "commons-httpclient:commons-httpclient:3.0"
        implementation "commons-codec:commons-codec:1.2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/build.gradle

        apply from: "\${rootProject.projectDir.absolutePath}/gradle/script-plugin${it}.gradle"
        <% } %>
        <% } %>
    
    repositories {
    <% if (repository) { %>
        maven {
            url rootProject.file("${repository.rootDir.name}").toURI().toURL()
        }
    <% } %>
        mavenCentral()
    }
    
    <% if (binding.hasVariable("projectDependencies")) { %>
        configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/GradleMetadataResolveInterceptor.groovy

        GradleMetadataResolveInterceptor(Class<?> target) {
            super(target, [
                    (GRADLE_METADATA): booleanFeature("Gradle metadata"),
                    (REPOSITORY_TYPE): new Feature(ivy: 'Ivy repository', maven: 'Maven repository')
                ],
                doNotExecuteAllPermutationsForNoDaemonExecuter())
        }
    
        private static boolean doNotExecuteAllPermutationsForNoDaemonExecuter() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCoordinatesIntegTest.groovy

            when:
            succeeds 'publish'
    
            then:
            outputContains("Multiple publications with coordinates 'org.example:duplicate-publications:1.0' are published to repository 'maven'. The publications 'main' in root project 'duplicate-publications' and 'other' in root project 'duplicate-publications' will overwrite each other!")
    
            when:
            succeeds 'publishToMavenLocal'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishLoggingIntegTest.groovy

            when:
            succeeds 'publish', "-i"
    
            then:
            def output = result.groupedOutput.task(":publishMavenPublicationToMavenRepository").output
    
            output.contains("Publishing to repository 'maven'")
            output.contains("Uploading root-1.0.jar to ")
            output.contains("Uploading root-1.0.pom to ")
            output.contains("Uploading root-1.0.module to ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top