dev@glassfish.java.net

pom.xml review

From: Yamini K B <yamini.k.b_at_oracle.com>
Date: Wed, 23 Nov 2011 15:16:02 +0530

Hi,

cluster-cli module needs to depend on ssl-impl to recover ssh password
aliases from domain key store. This change is needed for both trunk and
3.1.2 branch:

Trunk:

Index: cluster/cli/pom.xml
===================================================================
--- cluster/cli/pom.xml (revision 50952)
+++ cluster/cli/pom.xml (working copy)
@@ -156,6 +156,11 @@
<artifactId>cluster-ssh</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.glassfish.security</groupId>
+ <artifactId>ssl-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
</dependencies>
</project>

3.1.2 branch:

Index: cluster/cli/pom.xml
===================================================================
--- cluster/cli/pom.xml (revision 50933)
+++ cluster/cli/pom.xml (working copy)
@@ -151,6 +151,11 @@
<artifactId>cluster-ssh</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.glassfish.main.security</groupId>
+ <artifactId>ssl-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
</dependencies>
</project>

Thanks,
-Yamini