Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 56490 invoked from network); 20 Feb 2006 08:53:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 20 Feb 2006 08:53:03 -0000 Received: (qmail 19406 invoked by uid 500); 20 Feb 2006 08:53:03 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 19370 invoked by uid 500); 20 Feb 2006 08:53:03 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 19358 invoked by uid 99); 20 Feb 2006 08:53:03 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Feb 2006 00:53:02 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 20 Feb 2006 00:53:02 -0800 Received: (qmail 56332 invoked by uid 65534); 20 Feb 2006 08:52:41 -0000 Message-ID: <20060220085241.56326.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r379060 - in /directory/trunks: apacheds/pom.xml resources/codesize.sh Date: Mon, 20 Feb 2006 08:52:40 -0000 To: commits@directory.apache.org From: trustin@apache.org X-Mailer: svnmailer-1.0.6 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: trustin Date: Mon Feb 20 00:52:38 2006 New Revision: 379060 URL: http://svn.apache.org/viewcvs?rev=379060&view=rev Log: * Fixed wrong dependency in apacheds/pom.xml * Fixed: codesize.sh returns 0 Modified: directory/trunks/apacheds/pom.xml directory/trunks/resources/codesize.sh Modified: directory/trunks/apacheds/pom.xml URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/pom.xml?rev=379060&r1=379059&r2=379060&view=diff ============================================================================== --- directory/trunks/apacheds/pom.xml (original) +++ directory/trunks/apacheds/pom.xml Mon Feb 20 00:52:38 2006 @@ -55,7 +55,7 @@ org.apache.directory.shared shared-ldap - 0.9.5 + 0.9.5-SNAPSHOT Modified: directory/trunks/resources/codesize.sh URL: http://svn.apache.org/viewcvs/directory/trunks/resources/codesize.sh?rev=379060&r1=379059&r2=379060&view=diff ============================================================================== --- directory/trunks/resources/codesize.sh (original) +++ directory/trunks/resources/codesize.sh Mon Feb 20 00:52:38 2006 @@ -3,4 +3,4 @@ # This script is supposed to be run from 'directory/trunks' # with the command 'sh-scripts/codesize.sh' -echo Total lines of Java code is $(find . -type f -regex '.*\.java' | xargs cat | wc -l). +echo Total lines of Java code is $(find .. -type f -regex '.*\.java' | xargs cat | wc -l).