org.gradle.integtests.resolve.ResolutionStrategySamplesIntegrationTest.groovy Maven / Gradle / Ivy
/*
* Copyright 2012 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
import org.gradle.integtests.fixtures.AbstractIntegrationSpec
import org.gradle.integtests.fixtures.Sample
import org.junit.Rule
public class ResolutionStrategySamplesIntegrationTest extends AbstractIntegrationSpec {
@Rule public final Sample sample = new Sample(temporaryFolder, 'userguide/artifacts/resolutionStrategy')
void "can resolve dependencies"()
{
mavenRepo.module("org", "foo").publish()
mavenRepo.module("org", "bar").publish()
mavenRepo.module("org.gradle", "gradle-core", "1.4").publish()
mavenRepo.module("org.software", "some-library", "1.2.1").publish()
mavenRepo.module("org.codehaus", "groovy", "2.4.4").publish()
mavenRepo.module("org.slf4j", "log4j-over-slf4j", "1.7.10").publish()
sample.dir.file("build.gradle") << """
configurations { conf }
repositories { maven { url "${mavenRepo.uri}" } }
dependencies {
conf "org:foo:1.0"
conf "org.gradle:gradle-core:1.0"
conf "org:bar:default"
conf "org.software:some-library:1.2"
conf "org.codehaus:groovy-all:2.4.4"
conf "log4j:log4j:1.2"
}
task resolveConf << { configurations.conf.files }
"""
when:
inDirectory(sample.dir)
//smoke testing if dependency resolution works fine
run("resolveConf")
then:
noExceptionThrown()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy