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

com.matthewcasperson.build.services.impl.shared.ApplyPluginsImpl.groovy Maven / Gradle / Ivy

package com.matthewcasperson.build.services.impl.shared

import org.gradle.api.Project

/**
 * Created by Matthew on 7/02/2016.
 */
trait ApplyPluginsImpl {
    void applyPlugins(Project project) {
        assert project != null;
        project.plugins.apply('java');
        project.plugins.apply('propdeps');
        project.plugins.apply('propdeps-maven');
        project.plugins.apply('propdeps-idea');
        project.plugins.apply('propdeps-eclipse');
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy