This is an automated email from the ASF dual-hosted git repository.
andor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/master by this push:
new a7b00ed Fix ant package target: pom.template, zooinspector
a7b00ed is described below
commit a7b00ed47784f101cbd38efaecb89192ae9d3344
Author: Andor Molnar <[email protected]>
AuthorDate: Fri Feb 15 12:39:38 2019 +0100
Fix ant package target: pom.template, zooinspector
Quick fix for the release process.
Author: Andor Molnar <[email protected]>
Reviewers: [email protected], [email protected]
Closes #821 from anmolnar/fix_package and squashes the following commits:
170acfd2d [Andor Molnar] Added copy pom.template task to bin-package target
fe0b95b46 [Andor Molnar] Fix ant package target: pom.template, zooinspector
---
build.xml | 6 ++++++
zookeeper-contrib/zookeeper-contrib-zooinspector/build.xml | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/build.xml b/build.xml
index fec8a77..d351165 100644
--- a/build.xml
+++ b/build.xml
@@ -886,6 +886,9 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle.ant">
<include name="zookeeper-server/**"/>
<include name="zookeeper-it/**"/>
</fileset>
+ </copy>
+
+ <copy todir="${dist.dir}/zookeeper-server/src/main/resources">
<fileset file="${java.server.resources.dir}/pom.template"/>
</copy>
@@ -1010,6 +1013,9 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle.ant">
<include name="zookeeper-server/**"/>
<include name="zookeeper-it/**"/>
</fileset>
+ </copy>
+
+ <copy todir="${dist.dir}/zookeeper-server/src/main/resources">
<fileset file="${java.server.resources.dir}/pom.template"/>
</copy>
diff --git a/zookeeper-contrib/zookeeper-contrib-zooinspector/build.xml
b/zookeeper-contrib/zookeeper-contrib-zooinspector/build.xml
index 7290b18..7eb5e27 100644
--- a/zookeeper-contrib/zookeeper-contrib-zooinspector/build.xml
+++ b/zookeeper-contrib/zookeeper-contrib-zooinspector/build.xml
@@ -15,7 +15,7 @@
limitations under the License.
-->
-<project name="ZooInspector" default="jar">
+<project name="zooinspector" default="jar">
<import file="../build-contrib.xml" />