Author: steve.ebersole(a)jboss.com
Date: 2010-07-08 13:32:44 -0400 (Thu, 08 Jul 2010)
New Revision: 19920
Removed:
core/trunk/testing/src/main/java/org/hibernate/test/
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/cache/BaseCacheProviderTestCase.java
core/trunk/testing/src/main/java/org/hibernate/testing/cache/Item.hbm.xml
core/trunk/testing/src/main/java/org/hibernate/testing/cache/Item.java
core/trunk/testing/src/main/java/org/hibernate/testing/cache/VersionedItem.java
core/trunk/testing/src/main/java/org/hibernate/testing/junit/AbstractClassLoaderIsolatedTestCase.java
core/trunk/testing/src/main/java/org/hibernate/testing/junit/DialectChecks.java
core/trunk/testing/src/main/java/org/hibernate/testing/junit/RequiresDialectFeature.java
core/trunk/testing/src/main/java/org/hibernate/testing/junit/SkipLog.java
core/trunk/testing/src/main/java/org/hibernate/testing/junit/TestSuiteVisitor.java
core/trunk/testing/src/main/java/org/hibernate/testing/junit/UnitTestCase.java
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/DatabaseSpecificFunctionalTestCase.java
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/ExecutionEnvironment.java
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/FunctionalTestCase.java
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/FunctionalTestClassTestSuite.java
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/annotations/HibernateTestCase.java
core/trunk/testing/src/main/java/org/hibernate/testing/tm/ConnectionProviderImpl.java
core/trunk/testing/src/main/java/org/hibernate/testing/tm/SimpleJtaTransactionImpl.java
core/trunk/testing/src/main/java/org/hibernate/testing/tm/SimpleJtaTransactionManagerImpl.java
core/trunk/testing/src/main/java/org/hibernate/testing/tm/TransactionManagerLookupImpl.java
core/trunk/testing/src/main/java/org/hibernate/testing/tm/package.html
Log:
HHH-5357 - Rename hibernate-testing packages
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/cache/BaseCacheProviderTestCase.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/cache/BaseCacheProviderTestCase.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/cache/BaseCacheProviderTestCase.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
@@ -52,6 +52,11 @@
super( x );
}
+ @Override
+ public String getBaseForMappings() {
+ return "org/hibernate/testing/";
+ }
+
public String[] getMappings() {
return new String[] { "cache/Item.hbm.xml" };
}
Modified: core/trunk/testing/src/main/java/org/hibernate/testing/cache/Item.hbm.xml
===================================================================
--- core/trunk/testing/src/main/java/org/hibernate/testing/cache/Item.hbm.xml 2010-07-08
16:11:34 UTC (rev 19919)
+++ core/trunk/testing/src/main/java/org/hibernate/testing/cache/Item.hbm.xml 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,15 +1,11 @@
<?xml version="1.0"?>
-<!DOCTYPE hibernate-mapping PUBLIC
- "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
- "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
-
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2010, Red Hat Inc. or third-party contributors as
~ indicated by the @author tags or express copyright attribution
- ~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
@@ -26,8 +22,12 @@
~ 51 Franklin Street, Fifth Floor
~ Boston, MA 02110-1301 USA
-->
+<!DOCTYPE hibernate-mapping PUBLIC
+ "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
+ "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
+
<hibernate-mapping
- package="org.hibernate.test.cache">
+ package="org.hibernate.testing.cache">
<class name="Item" table="Items">
<id name="id">
Modified: core/trunk/testing/src/main/java/org/hibernate/testing/cache/Item.java
===================================================================
--- core/trunk/testing/src/main/java/org/hibernate/testing/cache/Item.java 2010-07-08
16:11:34 UTC (rev 19919)
+++ core/trunk/testing/src/main/java/org/hibernate/testing/cache/Item.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
@@ -21,7 +21,6 @@
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
-
package org.hibernate.testing.cache;
/**
Modified: core/trunk/testing/src/main/java/org/hibernate/testing/cache/VersionedItem.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/cache/VersionedItem.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/cache/VersionedItem.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/junit/AbstractClassLoaderIsolatedTestCase.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/junit/AbstractClassLoaderIsolatedTestCase.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/junit/AbstractClassLoaderIsolatedTestCase.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified: core/trunk/testing/src/main/java/org/hibernate/testing/junit/DialectChecks.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/junit/DialectChecks.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/junit/DialectChecks.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,4 +1,3 @@
-// $Id$
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
@@ -22,6 +21,9 @@
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
+
+// $Id$
+
package org.hibernate.testing.junit;
import org.hibernate.dialect.Dialect;
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/junit/RequiresDialectFeature.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/junit/RequiresDialectFeature.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/junit/RequiresDialectFeature.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,4 +1,3 @@
-// $Id$
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
@@ -22,6 +21,9 @@
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
+
+// $Id$
+
package org.hibernate.testing.junit;
import java.lang.annotation.ElementType;
Modified: core/trunk/testing/src/main/java/org/hibernate/testing/junit/SkipLog.java
===================================================================
--- core/trunk/testing/src/main/java/org/hibernate/testing/junit/SkipLog.java 2010-07-08
16:11:34 UTC (rev 19919)
+++ core/trunk/testing/src/main/java/org/hibernate/testing/junit/SkipLog.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/junit/TestSuiteVisitor.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/junit/TestSuiteVisitor.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/junit/TestSuiteVisitor.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified: core/trunk/testing/src/main/java/org/hibernate/testing/junit/UnitTestCase.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/junit/UnitTestCase.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/junit/UnitTestCase.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/DatabaseSpecificFunctionalTestCase.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/DatabaseSpecificFunctionalTestCase.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/DatabaseSpecificFunctionalTestCase.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/ExecutionEnvironment.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/ExecutionEnvironment.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/ExecutionEnvironment.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/FunctionalTestCase.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/FunctionalTestCase.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/FunctionalTestCase.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/FunctionalTestClassTestSuite.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/FunctionalTestClassTestSuite.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/FunctionalTestClassTestSuite.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/annotations/HibernateTestCase.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/annotations/HibernateTestCase.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/junit/functional/annotations/HibernateTestCase.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,4 +1,3 @@
-// $Id$
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
@@ -22,6 +21,9 @@
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
+
+// $Id$
+
package org.hibernate.testing.junit.functional.annotations;
import java.lang.annotation.Annotation;
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/tm/ConnectionProviderImpl.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/tm/ConnectionProviderImpl.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/tm/ConnectionProviderImpl.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/tm/SimpleJtaTransactionImpl.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/tm/SimpleJtaTransactionImpl.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/tm/SimpleJtaTransactionImpl.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/tm/SimpleJtaTransactionManagerImpl.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/tm/SimpleJtaTransactionManagerImpl.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/tm/SimpleJtaTransactionManagerImpl.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,10 +1,10 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
Modified:
core/trunk/testing/src/main/java/org/hibernate/testing/tm/TransactionManagerLookupImpl.java
===================================================================
---
core/trunk/testing/src/main/java/org/hibernate/testing/tm/TransactionManagerLookupImpl.java 2010-07-08
16:11:34 UTC (rev 19919)
+++
core/trunk/testing/src/main/java/org/hibernate/testing/tm/TransactionManagerLookupImpl.java 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,17 +1,17 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
- * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
- * statements applied by the authors. All third-party contributions are
- * distributed under license by Red Hat Middleware LLC.
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
Modified: core/trunk/testing/src/main/java/org/hibernate/testing/tm/package.html
===================================================================
--- core/trunk/testing/src/main/java/org/hibernate/testing/tm/package.html 2010-07-08
16:11:34 UTC (rev 19919)
+++ core/trunk/testing/src/main/java/org/hibernate/testing/tm/package.html 2010-07-08
17:32:44 UTC (rev 19920)
@@ -1,12 +1,10 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
- ~ Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
+ ~ Copyright (c) 2010, Red Hat Inc. or third-party contributors as
~ indicated by the @author tags or express copyright attribution
- ~ statements applied by the authors. All third-party contributions are
- ~ distributed under license by Red Hat Middleware LLC.
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Inc.
~
~ This copyrighted material is made available to anyone wishing to use, modify,
~ copy, or redistribute it subject to the terms and conditions of the GNU
@@ -23,6 +21,8 @@
~ 51 Franklin Street, Fifth Floor
~ Boston, MA 02110-1301 USA
-->
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+
<HTML>
<HEAD>
<TITLE>Package Information - org.hibernate.test.tm</TITLE>