From a187d3eb5c49487423b1802f47413f414adff8ee Mon Sep 17 00:00:00 2001 From: Ben Madore <823868+madorb@users.noreply.github.com> Date: Fri, 7 Oct 2022 14:56:29 -0500 Subject: [PATCH] Consistently use ext variable for version Use the `mapstructVersion` variable everywhere within the file --- mapstruct-on-gradle/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapstruct-on-gradle/build.gradle b/mapstruct-on-gradle/build.gradle index 89ce249..f29b576 100644 --- a/mapstruct-on-gradle/build.gradle +++ b/mapstruct-on-gradle/build.gradle @@ -16,7 +16,7 @@ sourceCompatibility = JavaVersion.VERSION_1_8 dependencies { implementation "org.mapstruct:mapstruct:${mapstructVersion}" testImplementation "org.testng:testng:6.10", "org.easytesting:fest-assert:1.4" - annotationProcessor "org.mapstruct:mapstruct-processor:1.5.3.Final" + annotationProcessor "org.mapstruct:mapstruct-processor:${mapstructVersion}" } tasks.withType(JavaCompile) {