com.matthewcasperson.build.services.impl.iridiumextension.ConfigureDependenciesImpl.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of build Show documentation
Show all versions of build Show documentation
A set of Gradle plugins that can be used to build and publish the various artifacts that make up Iridium
The newest version!
package com.matthewcasperson.build.services.impl.apiomegalibrary
import com.matthewcasperson.build.services.ConfigureDependencies
import org.gradle.api.Project
/**
* Defines the common dependencies used by iridium extensions
*/
trait ConfigureDependenciesImpl implements ConfigureDependencies {
def junitVersion = '4.12'
def iridiumVersion = '0.+'
void configureDependencies(Project project) {
assert project != null;
project.dependencies {
compileOnly 'com.matthewcasperson:iridium:' + iridiumVersion
testCompile 'junit:junit:' + junitVersion
}
}
}