All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.matthewcasperson.build.services.impl.iridiumextension.ConfigureDependenciesImpl.groovy Maven / Gradle / Ivy

Go to download

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
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy