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 <[email protected]>
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 <[email protected]>, Enrico Olivelli
<[email protected]>, ZhangJian He <[email protected]>, Yong Zhang
<[email protected]>
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
}
}
}