dev@glassfish.java.net

pom.xml review: fix class-path for cluster-cli.jar

From: Tom Mueller <Tom.Mueller_at_oracle.com>
Date: Tue, 12 Mar 2013 14:26:17 -0500

Please review this change to fix a problem with the validate-multicast
command. When the class-path was trimmed for admin-cli.jar, this
additional class-path entry is needed in cluster-cli.jar to make the
validate-multicast command work.

Thanks.
Tom


Index: nucleus/cluster/cli/pom.xml
===================================================================
--- nucleus/cluster/cli/pom.xml (revision 60374)
+++ nucleus/cluster/cli/pom.xml (working copy)
@@ -66,7 +66,7 @@
                      <archive>
                          <!-- XXX - which of these are needed? -->
                          <manifestEntries>
- <Class-Path>../../modules/cluster-common.jar
../../modules/cluster-ssh.jar ../../modules/config-api.jar
../../modules/internal-api.jar ../../modules/config-types.jar
cluster-l10n.jar</Class-Path>
+ <Class-Path>../../modules/cluster-common.jar
../../modules/cluster-ssh.jar ../../modules/config-api.jar
../../modules/internal-api.jar ../../modules/config-types.jar
../../modules/shoal-gms-impl.jar cluster-l10n.jar</Class-Path>
                          </manifestEntries>
                      </archive>
                  </configuration>