com.matthewcasperson.build.services.impl.shared.ConfigureJavaVersionImpl.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.ConfigureJavaVersion
import org.gradle.api.Project
/**
* Created by Matthew on 7/02/2016.
*/
trait ConfigureJavaVersionImpl implements ConfigureJavaVersion {
void configureJavaVersion(Project project) {
project.sourceCompatibility = 1.8;
project.targetCompatibility = 1.8;
}
}