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

com.matthewcasperson.build.services.impl.shared.ConfigureWrapperImpl.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.ConfigureWrapper
import org.gradle.api.Project
import org.gradle.api.tasks.wrapper.Wrapper

/**
 * Created by Matthew on 7/02/2016.
 */
trait ConfigureWrapperImpl implements ConfigureWrapper {
    void configureWrapper(Project project) {
        project.task('wrapper', type: Wrapper) {
            setGradleVersion('2.14')
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy