Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 68425 invoked from network); 4 Oct 2010 18:54:59 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 4 Oct 2010 18:54:59 -0000 Received: (qmail 74653 invoked by uid 500); 4 Oct 2010 18:54:59 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 74558 invoked by uid 500); 4 Oct 2010 18:54:58 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 74551 invoked by uid 99); 4 Oct 2010 18:54:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Oct 2010 18:54:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED 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; Mon, 04 Oct 2010 18:54:57 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CE0A72388A38; Mon, 4 Oct 2010 18:54:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1004358 - in /commons/proper/io/trunk: ./ src/assembly/ src/java/ src/main/assembly/ src/main/java/ src/test/java/ src/test/java/org/ src/test/java/org/apache/commons/io/ src/test/org/ Date: Mon, 04 Oct 2010 18:54:36 -0000 To: commits@commons.apache.org From: niallp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101004185436.CE0A72388A38@eris.apache.org> Author: niallp Date: Mon Oct 4 18:54:36 2010 New Revision: 1004358 URL: http://svn.apache.org/viewvc?rev=1004358&view=rev Log: Build changes - re-organize to standard m2 layout, remove useless JIRA report and fix some Ant issues Added: commons/proper/io/trunk/src/assembly/ - copied from r1004356, commons/proper/io/trunk/src/main/assembly/ commons/proper/io/trunk/src/main/java/ - copied from r1004356, commons/proper/io/trunk/src/java/ commons/proper/io/trunk/src/test/java/ commons/proper/io/trunk/src/test/java/org/ - copied from r1004356, commons/proper/io/trunk/src/test/org/ Removed: commons/proper/io/trunk/src/java/ commons/proper/io/trunk/src/main/assembly/ commons/proper/io/trunk/src/test/org/ Modified: commons/proper/io/trunk/build.xml commons/proper/io/trunk/pom.xml commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCase.java commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCaseJava4.java Modified: commons/proper/io/trunk/build.xml URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/build.xml?rev=1004358&r1=1004357&r2=1004358&view=diff ============================================================================== --- commons/proper/io/trunk/build.xml (original) +++ commons/proper/io/trunk/build.xml Mon Oct 4 18:54:36 2010 @@ -56,13 +56,13 @@ - + - + - + @@ -71,7 +71,7 @@ - + @@ -233,10 +233,10 @@ - + - + @@ -285,7 +285,6 @@ - @@ -297,9 +296,6 @@ - - - Modified: commons/proper/io/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/pom.xml?rev=1004358&r1=1004357&r2=1004358&view=diff ============================================================================== --- commons/proper/io/trunk/pom.xml (original) +++ commons/proper/io/trunk/pom.xml Mon Oct 4 18:54:36 2010 @@ -217,8 +217,6 @@ - src/java - src/test org.apache.maven.plugins @@ -243,8 +241,8 @@ maven-assembly-plugin - src/main/assembly/bin.xml - src/main/assembly/src.xml + src/assembly/bin.xml + src/assembly/src.xml gnu @@ -261,27 +259,6 @@ org.apache.maven.plugins - maven-changes-plugin - 2.3 - - - %URL%/%ISSUE% - - Fix Version,Type,Key,Summary,Priority,Reporter,Resolution - Fix Version DESC,Type,Key DESC - Fixed - Resolved,Closed - - - - - jira-report - - - - - - org.apache.maven.plugins maven-checkstyle-plugin 2.1 Modified: commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCase.java URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCase.java?rev=1004358&r1=1004356&r2=1004358&view=diff ============================================================================== --- commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCase.java (original) +++ commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCase.java Mon Oct 4 18:54:36 2010 @@ -43,7 +43,7 @@ public class DirectoryWalkerTestCase ext // Directories private static final File current = new File("."); - private static final File javaDir = new File("src/java"); + private static final File javaDir = new File("src/main/java"); private static final File orgDir = new File(javaDir, "org"); private static final File apacheDir = new File(orgDir, "apache"); private static final File commonsDir = new File(apacheDir, "commons"); Modified: commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCaseJava4.java URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCaseJava4.java?rev=1004358&r1=1004356&r2=1004358&view=diff ============================================================================== --- commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCaseJava4.java (original) +++ commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCaseJava4.java Mon Oct 4 18:54:36 2010 @@ -44,7 +44,7 @@ public class DirectoryWalkerTestCaseJava // Directories private static final File current = new File("."); - private static final File javaDir = new File("src/java"); + private static final File javaDir = new File("src/main/java"); private static final File orgDir = new File(javaDir, "org"); private static final File apacheDir = new File(orgDir, "apache"); private static final File commonsDir = new File(apacheDir, "commons");