org.gradle.integtests.resolve.maven.MavenPomResolveIntegrationTest.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.integtests.resolve.maven
import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
import spock.lang.Issue
class MavenPomResolveIntegrationTest extends AbstractHttpDependencyResolutionTest {
def "follows relocation to another group"() {
given:
def original = mavenHttpRepo.module("groupA", "projectA", "1.2").publishPom()
original.pomFile.text = """
groupA
projectA
1.2
newGroupA
"""
def newModule = mavenHttpRepo.module("newGroupA", "projectA", "1.2").publish()
newModule.publish()
and:
buildFile << """
repositories { maven { url '${mavenHttpRepo.uri}' } }
configurations { compile }
dependencies { compile 'groupA:projectA:1.2' }
task retrieve(type: Sync) {
into 'libs'
from configurations.compile
}
"""
and:
original.pom.expectGet()
newModule.pom.expectGet()
newModule.artifact.expectGet()
when:
run "retrieve"
then:
file("libs").assertHasDescendants("projectA-1.2.jar")
}
@Issue("https://issues.gradle.org/browse/GRADLE-2861")
def "can handle pom with unspecified properties in dependency management"() {
given:
def parent = mavenHttpRepo.module('group', 'parent', '1.0').publish()
parent.pomFile.text = parent.pomFile.text.replace("", '''
${some.group}
${some.artifact}
${some.version}
''')
def module = mavenHttpRepo.module('group', 'artifact', '1.0').parent('group', 'parent', '1.0').publish()
and:
buildFile << """
repositories {
maven { url "${mavenHttpRepo.uri}" }
}
configurations { compile }
dependencies {
compile "group:artifact:1.0"
}
task libs { doLast { assert configurations.compile.files.collect {it.name} == ['artifact-1.0.jar'] } }
"""
and:
parent.pom.expectGet()
module.pom.expectGet()
module.artifact.expectGet()
expect:
// have to run twice to trigger the failure, to parse the descriptor from the cache
succeeds ":libs"
succeeds ":libs"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy