com.matthewcasperson.build.services.impl.shared.ConfigureXercesVersionImpl.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of build Show documentation
Show all versions of build Show documentation
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'
}
}
}
}