From 841aa96e59d581f6b982e54a5c79c0c21a15a6d7 Mon Sep 17 00:00:00 2001 From: John Niang Date: Mon, 13 Nov 2023 11:08:09 +0800 Subject: [PATCH] Upgrade to Lombok gradle plugin 8.4 (#4849) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### What type of PR is this? /kind cleanup /area core /milestone 2.11.x #### What this PR does / why we need it: Upgrade to Lombok gradle plugin 8.4. See https://docs.freefair.io/gradle-plugins/8.4/reference/#_installation and https://docs.freefair.io/gradle-plugins/8.4/reference/#_system_requirements for more. #### Does this PR introduce a user-facing change? ```release-note 升级 Lombok Gradle 插件至 8.4 ``` --- api/build.gradle | 2 +- application/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/build.gradle b/api/build.gradle index 7063a3c601..33f5a47ed4 100644 --- a/api/build.gradle +++ b/api/build.gradle @@ -1,7 +1,7 @@ plugins { id 'java-library' id 'halo.publish' - id "io.freefair.lombok" version "8.0.0-rc2" + id "io.freefair.lombok" version "8.4" } group = 'run.halo.app' diff --git a/application/build.gradle b/application/build.gradle index 988b82a3cd..2066478034 100644 --- a/application/build.gradle +++ b/application/build.gradle @@ -6,7 +6,7 @@ plugins { id 'java' id 'jacoco' id "de.undercouch.download" version "5.3.1" - id "io.freefair.lombok" version "8.0.0-rc2" + id "io.freefair.lombok" version "8.4" } group = "run.halo.app"