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

ayegorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 0235be3  Gradle build: add mavenLocal() repository
0235be3 is described below

commit 0235be3f4254eab37d4ca0a14a7bd3cc4d9f090c
Author: Enrico Olivelli <[email protected]>
AuthorDate: Wed Mar 16 19:15:49 2022 +0100

    Gradle build: add mavenLocal() repository
    
    ### Motivation
    
    In Gradle you need to add `mavenLocal()` repository if you want to test 
local versions of third party libraries built with Maven (like ZooKeeper, 
Curator...)
    
    
    ### Changes
    Add `mavenLocal()`  repository
    
    Reviewers: Matteo Merli <[email protected]>, Nicolò Boschi 
<[email protected]>, Andrey Yegorov <None>
    
    This closes #3114 from eolivelli/impl/gradle-maven-local
---
 build.gradle | 1 +
 1 file changed, 1 insertion(+)

diff --git a/build.gradle b/build.gradle
index 1938b7b..a8bd139 100644
--- a/build.gradle
+++ b/build.gradle
@@ -351,6 +351,7 @@ allprojects {
 
     repositories {
         mavenCentral()
+        mavenLocal()
     }
 }
 

Reply via email to