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

com.matthewcasperson.build.services.impl.shared.ConfigureBuildScriptImpl.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.shared

import com.matthewcasperson.build.services.ConfigureBuildScript
import org.gradle.api.Project

/**
 * Created by Matthew on 7/02/2016.
 */
trait ConfigureBuildScriptImpl implements ConfigureBuildScript{
    void configureBuildScript(Project project) {
        assert project != null;

        project.buildscript {
            repositories {
                maven { url 'http://repo.spring.io/plugins-release' }
            }
            dependencies {
                classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.7'
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy