Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 588 for ivyA (0.1 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyHttpRepoResolveIntegrationTest.groovy

            module1.ivy.expectGetBlocking()
    
            then:
            fails 'checkDeps'
            failureHasCause("Could not resolve group:projectA:1.0")
            failureHasCause("Could not GET '$repo1.uri/group/projectA/1.0/ivy-1.0.xml'")
            failureHasCause('Read timed out')
    
            when:
            server.resetExpectations()
            module1.ivy.expectGetMissing()
            module2.ivy.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishVersionRangeIntegTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.publish.ivy
    
    import groovy.test.NotYetImplemented
    import spock.lang.Issue
    
    class IvyPublishVersionRangeIntegTest extends AbstractIvyPublishIntegTest {
        def ivyModule = javaLibrary(ivyRepo.module("org.gradle.test", "publishTest", "1.9"))
    
        void "version range is mapped to ivy syntax in published ivy descriptor file"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/crossVersionTest/groovy/org/gradle/api/publish/ivy/IvyPublishCrossVersionIntegrationTest.groovy

            buildFile.text = """
    apply plugin: 'war'
    apply plugin: 'ivy-publish'
    
    group = 'org.gradle.crossversion'
    version = '1.9'
    
    repositories {
        ivy { url "${repo.uri}" }
    }
    dependencies {
        implementation "org.gradle:test-project:1.2"
    }
    publishing {
        repositories {
            ivy { url "${repo.uri}" }
        }
        publications {
            ivy(IvyPublication) {
                from components.${componentToPublish}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

    Found the following publications in project ':project2':
      - Ivy publication 'ivy' with coordinates org.gradle.test:project2:2.0
      - Ivy publication 'extraComponent' with coordinates extra.org:extra-module:extra
      - Ivy publication 'extra' with coordinates extra.org:extra-module-2:extra"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

            target << ['maven', 'maven-gradle', 'ivy-gradle']
        }
    
        def "explicit configuration selection in ivy modules is supported if targeting a ivy module"() {
            given:
            // use a different name if selection is supported to not follow the default expectations defined in leaksRuntime()
            String targetRepoName = "ivy-select"
            setupRepositories([targetRepoName, 'ivy'])
            repository('ivy') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/plugins/IvyPublishPluginTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.publish.ivy.plugins
    
    
    import org.gradle.api.publish.PublishingExtension
    import org.gradle.api.publish.ivy.IvyPublication
    import org.gradle.api.publish.ivy.internal.publication.DefaultIvyPublication
    import org.gradle.api.publish.ivy.internal.publication.IvyPublicationInternal
    import org.gradle.internal.xml.XmlTransformer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MixedMavenAndIvyModulesIntegrationTest.groovy

                repositories {
                    maven { url '${mavenRepo.uri}' }
                    ivy { url '${ivyRepo.uri}' }
                }
                configurations {
                    conf
                }
    """
        }
    
        def "when no target configuration is specified then a dependency on maven module includes the default configuration of required ivy module"() {
            def inDefault = ivyRepo.module("org.test", "in-default", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/AbstractRedirectResolveIntegrationTest.groovy

            when:
            server.expectGetRedirected('/repo/group/projectA/1.0/ivy-1.0.xml', "${backingServer.uri}/redirected/group/projectA/1.0/ivy-1.0.xml")
            backingServer.expectGetBroken('/redirected/group/projectA/1.0/ivy-1.0.xml')
    
            then:
            fails('listJars')
    
            and:
            failureCauseContains("Could not get resource '${server.uri}/repo/group/projectA/1.0/ivy-1.0.xml'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

        IvyDescriptor(File ivyFile) {
            def ivy = new XmlParser().parse(ivyFile)
            organisation = ivy.info[0].@organisation
            module = ivy.info[0].@module
            revision = ivy.info[0].@revision
            status = ivy.info[0].@status
            branch = ivy.info[0].@branch
            resolver = ivy.info[0].@resolver
            description = ivy.info[0].description[0]
            licenses = ivy.info[0].license
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-ivyDynamicMode/kotlin/build.gradle.kts

    // tag::ivy-repo-dynamic-mode[]
    // Can enable dynamic resolve mode when you define the repository
    repositories {
        ivy {
            url = uri("http://repo.mycompany.com/repo")
            resolve.isDynamicMode = true
        }
    }
    
    // Can use a rule instead to enable (or disable) dynamic resolve mode for all repositories
    repositories.withType<IvyArtifactRepository> {
        resolve.isDynamicMode = true
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 426 bytes
    - Viewed (0)
Back to top