Hi.
I've created a small utility class related in common/common-utils that
will be used from, among other places, cluster/ssh which has not until
now depended on common/common-utils. This pom change adds that
dependency.
Thanks.
- Tim
Index: cluster/ssh/pom.xml
===================================================================
--- cluster/ssh/pom.xml (revision 42450)
+++ cluster/ssh/pom.xml (working copy)
@@ -97,6 +97,17 @@
<artifactId>internal-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
+
+ <!--
+ Next dependency is for the utility classes
+ which send data to asadmin's System.in when launched
+ from NodeRunner.
+ -->
+ <dependency>
+ <groupId>org.glassfish.common</groupId>
+ <artifactId>common-util</artifactId>
+ <version>${project.parent.version}</version>
+ </dependency>
</dependencies>
</project>