Fixing package names and adding excludes to the pom.xml for the parts of the collections framework that followed over

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1154844 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-08-08 05:26:12 +00:00
parent 2093b8da08
commit b0e216a208
9 changed files with 15 additions and 13 deletions

View File

@ -469,6 +469,10 @@
<includes> <includes>
<include>**/*Test.java</include> <include>**/*Test.java</include>
</includes> </includes>
<excludes>
<exclude>**/BulkTest.java</exclude>
<exclude>**/AbstractTestObject.java</exclude>
</excludes>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.commons.collections.comparators; package org.apache.commons.lang3.compare;
import java.io.FileNotFoundException; import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
@ -24,8 +24,6 @@
import java.util.LinkedList; import java.util.LinkedList;
import java.util.List; import java.util.List;
import org.apache.commons.collections.AbstractTestObject;
/** /**
* Abstract test class for testing the Comparator interface. * Abstract test class for testing the Comparator interface.
* <p> * <p>

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.commons.collections.comparators; package org.apache.commons.lang3.compare;
import java.util.Comparator; import java.util.Comparator;
import java.util.LinkedList; import java.util.LinkedList;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.commons.collections; package org.apache.commons.lang3.compare;
import java.io.ByteArrayInputStream; import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream; import java.io.ByteArrayOutputStream;
@ -44,7 +44,7 @@
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Anonymous * @author Anonymous
*/ */
public abstract class AbstractTestObject extends BulkTest { abstract class AbstractTestObject extends BulkTest {
/** Current major release for Collections */ /** Current major release for Collections */
public static final int COLLECTIONS_MAJOR_VERSION = 3; public static final int COLLECTIONS_MAJOR_VERSION = 3;
@ -316,7 +316,7 @@ protected Object readExternalFormFromBytes(byte[] b) throws IOException, ClassNo
} }
protected boolean skipSerializedCanonicalTests() { protected boolean skipSerializedCanonicalTests() {
return Boolean.getBoolean("org.apache.commons.collections:with-clover"); return Boolean.getBoolean("org.apache.commons.lang3:with-clover");
} }
// private implementation // private implementation

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.commons.collections; package org.apache.commons.lang3.compare;
import java.lang.reflect.Constructor; import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
@ -136,7 +136,7 @@
* @author Paul Jack * @author Paul Jack
* @version $Id$ * @version $Id$
*/ */
public class BulkTest extends TestCase implements Cloneable { class BulkTest extends TestCase implements Cloneable {
// Note: BulkTest is Cloneable to make it easier to construct // Note: BulkTest is Cloneable to make it easier to construct

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.commons.collections.comparators; package org.apache.commons.lang3.compare;
import java.util.Comparator; import java.util.Comparator;
import java.util.LinkedList; import java.util.LinkedList;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.commons.collections.comparators; package org.apache.commons.lang3.compare;
import java.io.Serializable; import java.io.Serializable;
import java.util.Comparator; import java.util.Comparator;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.commons.collections.comparators; package org.apache.commons.lang3.compare;
import java.util.Arrays; import java.util.Arrays;
import java.util.Comparator; import java.util.Comparator;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.commons.collections.comparators; package org.apache.commons.lang3.compare;
import java.io.ByteArrayInputStream; import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream; import java.io.ByteArrayOutputStream;