Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for Repository$Maven (0.27 sec)

  1. 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)
  2. 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)
  3. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenPublishGcsErrorsIntegrationTest.groovy

            then:
            fails 'publish'
    
            failure.assertHasDescription("Execution failed for task ':publishPubPublicationToMavenRepository'.")
            failure.assertHasCause("Failed to publish publication 'pub' to repository 'maven'")
            failure.assertHasCause("Could not write to resource '${module.artifact.uri}'.")
            failure.assertHasCause("403 Forbidden")
        }
    
        MavenGcsRepository getMavenGcsRepo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. maven-repository-metadata/src/site/apt/index.apt

     -----
    
    Maven Repository Metadata Model
    
     This is strictly the model for Maven Repository Metadata, so really just plain objects.
    
     The metadata file name is:
    
     * <<<maven-metadata.xml>>> in a remote repository,
    
     * <<<maven-metadata-\<repo-id>.xml>>> in a local repository, for metadata from a repository with <<<repo-id>>> identifier.
    
     []
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 07 10:05:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3ErrorsIntegrationTest.groovy

            then:
            fails 'publish'
    
            failure.assertHasDescription("Execution failed for task ':publishPubPublicationToMavenRepository'.")
            failure.assertHasCause("Failed to publish publication 'pub' to repository 'maven'")
            failure.assertHasCause("Could not write to resource '${module.artifact.uri}'.")
            failure.assertHasCause("The AWS Access Key Id you provided does not exist in our records.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIdentifierValidationIntegTest.groovy

            then:
            failure.assertHasDescription "Execution failed for task ':publishMavenPublicationToMavenRepository'."
            failure.assertHasCause "Failed to publish publication 'maven' to repository 'maven'"
            failure.assertHasCause "Invalid publication 'maven': groupId cannot be empty"
        }
    
        def "fails with reasonable error message for invalid #invalidComponent name"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenModuleArtifactResolutionIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "requesting MavenModule for a project component"() {
            MavenHttpModule module = publishModule()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    - Gradle Module Metadata is systematically published alongside the normal descriptor for a given repository (Maven or Ivy)
    - the `pom.xml` or `ivy.xml` file will contain a _marker comment_ which tells Gradle that Gradle Module Metadata exists for this module
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top