Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Repository$Maven (0.2 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/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)
  3. 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)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

            then:
            failure.assertHasDescription("Execution failed for task ':publishMavenPublicationToMavenRepository'.")
            failure.assertHasCause("Failed to publish publication 'maven' to repository 'maven'")
            failure.assertHasCause("Invalid publication 'maven': POM file is invalid. Check any modifications you have made to the POM file.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  5. 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)
  6. apache-maven/src/assembly/maven/conf/settings.xml

              xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.3.0 https://maven.apache.org/xsd/settings-1.3.0.xsd">
      <!-- localRepository
       | The path to the local repository maven will use to store artifacts.
       |
       | Default: ${user.home}/.m2/repository
      <localRepository>/path/to/local/repo</localRepository>
      -->
    
      <!-- interactiveMode
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

            then:
            failure.assertHasDescription("Execution failed for task ':publishMavenCustomPublicationToMavenRepository'.")
            failure.assertHasCause("Failed to publish publication 'mavenCustom' to repository 'maven'")
            failure.assertHasCause("Invalid publication 'mavenCustom': artifact file is a directory")
        }
    
        def "artifact coordinates are evaluated lazily"() {
            given:
            createBuildScripts("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    Alternatively, you can <<#sec:declaring_custom_repository,spell out the URL of the repository>> for more fine-grained control.
    
    [[sub:maven_central]]
    === Maven Central repository
    
    Maven Central is a popular repository hosting open source libraries for consumption by Java projects.
    
    To declare the link:https://repo.maven.apache.org/maven2/[Maven Central repository] for your build add this to your script:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
Back to top