From b9c8a43ff024f5cd14c4cb8007fbd05709be1b90 Mon Sep 17 00:00:00 2001 From: michaelin007 Date: Wed, 17 Jan 2024 02:34:51 +0000 Subject: [PATCH] https://jira.baeldung.com/browse/BAEL-3205 --- gradle-modules/gradle/gradle-employee-app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle-modules/gradle/gradle-employee-app/build.gradle b/gradle-modules/gradle/gradle-employee-app/build.gradle index c7040504f1..03d28f7e20 100644 --- a/gradle-modules/gradle/gradle-employee-app/build.gradle +++ b/gradle-modules/gradle/gradle-employee-app/build.gradle @@ -6,8 +6,8 @@ plugins { apply plugin: 'application' mainClassName = 'employee.EmployeeApp' -sourceCompatibility = JavaVersion.VERSION_1_8 -targetCompatibility = JavaVersion.VERSION_1_8 +sourceCompatibility = "1.8" +targetCompatibility = "1.8" println 'This is executed during configuration phase'