You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by ay...@apache.org on 2022/03/10 00:00:15 UTC

[bookkeeper] branch master updated: Fix publish do not include test jar

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 793d83c  Fix publish do not include test jar
793d83c is described below

commit 793d83c8790a9ea618188cb0f35cc6477d1e88df
Author: Hang Chen <ch...@apache.org>
AuthorDate: Thu Mar 10 08:00:08 2022 +0800

    Fix publish do not include test jar
    
    ### Motivation
    When use `./gradlew publishToMavenLocal` command to publish jars to local maven repository, it doesn't include test jars.
    
    ### Changes
    When publish, including the test jars.
    
    Reviewers: Nicolò Boschi <bo...@gmail.com>, Enrico Olivelli <eo...@gmail.com>, ZhangJian He <sh...@gmail.com>, Yong Zhang <zh...@gmail.com>
    
    This closes #3071 from hangc0276/chenhang/fix_publish_do_not_include_test_jar
---
 build.gradle | 1 +
 1 file changed, 1 insertion(+)

diff --git a/build.gradle b/build.gradle
index 2675474..528ca39 100644
--- a/build.gradle
+++ b/build.gradle
@@ -252,6 +252,7 @@ allprojects {
                     version = buildVersion
 
                     from components.java
+                    artifact testJar
                 }
             }
         }