You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/11/16 03:02:56 UTC

[groovy] branch GROOVY_4_0_X updated: fix typo

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch GROOVY_4_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/GROOVY_4_0_X by this push:
     new de5f77116b fix typo
de5f77116b is described below

commit de5f77116b578d9b0111e40e73e6dff3e7dec958
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Nov 16 13:02:49 2022 +1000

    fix typo
---
 subprojects/binary-compatibility/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/binary-compatibility/build.gradle b/subprojects/binary-compatibility/build.gradle
index b2a1425761..2addba8954 100644
--- a/subprojects/binary-compatibility/build.gradle
+++ b/subprojects/binary-compatibility/build.gradle
@@ -42,7 +42,7 @@ rootProject.allprojects {
             def baseline = thisProject.configurations.create("${taskName}Baseline") {
                 dependencies.add(thisProject.dependencies.create(baselineCoords))
             }
-            baseLine.resolutionStrategy.disableDependencyVerification()
+            baseline.resolutionStrategy.disableDependencyVerification()
             def singleProjectCheck = thisProject.tasks.register(taskName, JapicmpTask) {
                 oldArchives.from(baseline)
                 newArchives.from(files(tasks.named("jarjar")))