Repository: zookeeper
Updated Branches:
refs/heads/branch-3.4 b903a07c4 -> 955611e29
ZOOKEEPER-2861: Main-Class JAR manifest attribute is incorrect
Author: yaniv.kunda <yaniv@kundas.net>
Reviewers: Abe Fine <afine@apache.org>, Michael Han <hanm@apache.org>
Closes #323 from ykunda/master
(cherry picked from commit 09742f2d050105689592ffb5f5240ebde6f79dee)
Signed-off-by: Michael Han <hanm@apache.org>
Project: http://git-wip-us.apache.org/repos/asf/zookeeper/repo
Commit: http://git-wip-us.apache.org/repos/asf/zookeeper/commit/955611e2
Tree: http://git-wip-us.apache.org/repos/asf/zookeeper/tree/955611e2
Diff: http://git-wip-us.apache.org/repos/asf/zookeeper/diff/955611e2
Branch: refs/heads/branch-3.4
Commit: 955611e294151fee77b5b95829ebf117c65317ed
Parents: b903a07
Author: yaniv.kunda <yaniv@kundas.net>
Authored: Fri Aug 18 15:30:06 2017 -0700
Committer: Michael Han <hanm@apache.org>
Committed: Fri Aug 18 15:30:25 2017 -0700
----------------------------------------------------------------------
build.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/zookeeper/blob/955611e2/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 0c3e092..233bfa1 100644
--- a/build.xml
+++ b/build.xml
@@ -552,7 +552,7 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle">
<fileset dir="${java.src.dir}"/>
<fileset dir="${src_generated.dir}" excludes="**/.generated"/>
<manifest>
- <attribute name="Main-Class" value="org.apache.zookeeper.server.quorum.QuorumPeer"
/>
+ <attribute name="Main-Class" value="org.apache.zookeeper.server.quorum.QuorumPeerMain"
/>
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Built-At" value="${build.time}"/>
<attribute name="Built-On" value="${host.name}" />
@@ -593,7 +593,7 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle">
<fileset file="LICENSE.txt" />
<fileset dir="${build.classes}" excludes="**/.generated"/>
<manifest>
- <attribute name="Main-Class" value="org.apache.zookeeper.server.quorum.QuorumPeer"
/>
+ <attribute name="Main-Class" value="org.apache.zookeeper.server.quorum.QuorumPeerMain"
/>
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Built-At" value="${build.time}"/>
<attribute name="Built-On" value="${host.name}" />
|