Return-Path: Delivered-To: apmail-felix-commits-archive@www.apache.org Received: (qmail 75741 invoked from network); 8 Jun 2010 11:37:29 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 8 Jun 2010 11:37:29 -0000 Received: (qmail 21196 invoked by uid 500); 8 Jun 2010 11:37:29 -0000 Delivered-To: apmail-felix-commits-archive@felix.apache.org Received: (qmail 21109 invoked by uid 500); 8 Jun 2010 11:37:27 -0000 Mailing-List: contact commits-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list commits@felix.apache.org Received: (qmail 21102 invoked by uid 99); 8 Jun 2010 11:37:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jun 2010 11:37:26 +0000 X-ASF-Spam-Status: No, hits=-1599.9 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jun 2010 11:37:26 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0010C23889B3; Tue, 8 Jun 2010 11:37:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r952618 - /felix/trunk/karaf/shell/commands/src/main/java/org/apache/felix/karaf/shell/commands/InfoAction.java Date: Tue, 08 Jun 2010 11:37:05 -0000 To: commits@felix.apache.org From: gnodet@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100608113706.0010C23889B3@eris.apache.org> Author: gnodet Date: Tue Jun 8 11:37:05 2010 New Revision: 952618 URL: http://svn.apache.org/viewvc?rev=952618&view=rev Log: FELIX-2377: info - Should output the exact JRE version used Modified: felix/trunk/karaf/shell/commands/src/main/java/org/apache/felix/karaf/shell/commands/InfoAction.java Modified: felix/trunk/karaf/shell/commands/src/main/java/org/apache/felix/karaf/shell/commands/InfoAction.java URL: http://svn.apache.org/viewvc/felix/trunk/karaf/shell/commands/src/main/java/org/apache/felix/karaf/shell/commands/InfoAction.java?rev=952618&r1=952617&r2=952618&view=diff ============================================================================== --- felix/trunk/karaf/shell/commands/src/main/java/org/apache/felix/karaf/shell/commands/InfoAction.java (original) +++ felix/trunk/karaf/shell/commands/src/main/java/org/apache/felix/karaf/shell/commands/InfoAction.java Tue Jun 8 11:37:05 2010 @@ -61,6 +61,7 @@ public class InfoAction extends OsgiComm System.out.println("JVM"); printValue("Java Virtual Machine", maxNameLen, runtime.getVmName() + " version " + runtime.getVmVersion()); + printValue("Version", maxNameLen, System.getProperty("java.version")); printValue("Vendor", maxNameLen, runtime.getVmVendor()); printValue("Uptime", maxNameLen, printDuration(runtime.getUptime())); try {