Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Repository$Maven (0.25 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. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                    module('org:module:1.0')
                }
            }
    
            and:
            outputContains "Build was configured to prefer settings repositories over project repositories but repository 'maven' was added by build file 'build.gradle'"
        }
    
        def "can fail the build if a project declares a repository"() {
            repository {
                'org:module:1.0'()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. testing/performance/src/templates/project-with-source/build.gradle

    apply plugin: 'java'
    apply plugin: 'eclipse'
    apply plugin: 'idea'
    
    repositories {
    <% if (repository) { %>
        maven {
            url rootProject.file("${repository.rootDir.name}").toURI().toURL()
        }
    <% } %>
        mavenCentral()
    }
    
    <% if (binding.hasVariable("projectDependencies")) { %>
        configurations {
            compile.extendsFrom projectsConfiguration
        }
    <% } %>
    
    <% if (binding.hasVariable("springDmPluginVersion")) {%>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            then:
            failure.assertHasDescription("Execution failed for task ':publishMavenPublicationToMavenRepository'.")
            failure.assertHasCause("Failed to publish publication 'maven' to repository 'maven'")
            failure.assertHasCause("Could not PUT '${module.artifact.uri}'. Received status code 401 from server: Unauthorized")
    
            where:
            authScheme << [AuthScheme.BASIC, AuthScheme.DIGEST, AuthScheme.NTLM]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top