From 48eb31051b30ba1d391762bee69196d350039617 Mon Sep 17 00:00:00 2001 From: dgelessus <dgelessus@users.noreply.github.com> Date: Wed, 6 Mar 2019 14:59:02 +0100 Subject: [PATCH] Remove allprojects block around target versions This Gradle project has no subprojects, so the allprojects block is unnecessary. --- build.gradle | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 2e68806..954498b 100644 --- a/build.gradle +++ b/build.gradle @@ -12,10 +12,8 @@ wrapper { distributionType = Wrapper.DistributionType.ALL } -allprojects { - sourceCompatibility = 1.6 - targetCompatibility = 1.6 -} +sourceCompatibility = 1.6 +targetCompatibility = 1.6 dependencies { testCompile 'junit:junit:4.8.2' -- GitLab