Explorar el Código

Update build.gradle

Joe Grandja hace 5 años
padre
commit
3342333665
Se han modificado 1 ficheros con 5 adiciones y 2 borrados
  1. 5 2
      build.gradle

+ 5 - 2
build.gradle

@@ -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"
 	}
 }