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

com.matthewcasperson.build.services.impl.shared.ConfigureXercesVersionImpl.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.impl.ConfigureXercesVersion
import org.gradle.api.Project

/**
 * Created by matthewcasperson on 24/07/2016.
 */
trait ConfigureXercesVersionImpl implements ConfigureXercesVersion {
    void configureXercesVersion(Project project) {
        project.configurations.all {
            resolutionStrategy {
                force 'xml-apis:xml-apis:1.4.01'
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy