Update build.gradle

This commit is contained in:
Joe Grandja 2020-08-18 11:08:45 -04:00
parent 12d228c089
commit 3342333665

View File

@ -20,11 +20,14 @@ repositories {
mavenCentral()
}
dependencyManagementExport.projects = subprojects
dependencyManagementExport.projects = subprojects.findAll { !it.name.contains('-boot') }
subprojects {
plugins.withType(JavaPlugin) {
project.sourceCompatibility = '1.8'
project.sourceCompatibility = "1.8"
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
}