1) jdk is jdk-1_5_0_22-windows-i586-p.exe
2) hibernate-hibernate-core-3.6.8.Final-0-g80a1b36.zip
3) maven is apache-maven-2.2.1
4) maven settings.xml is
<settings>
<pluginGroups>
<pluginGroup>org.jboss.maven.plugins</pluginGroup>
</pluginGroups>
<profiles>
<profile>
<id>repos</id>
<properties>
<!-- Here we point to our local JDK 1.6 home -->
<jdk16_home>c:\dev\jdk1.6.0_27\</jdk16_home>
</properties>
<!-- Here we define the JBoss release and snapshot repos -->
<repositories>
<repository>
<id>jboss</id>
<url>https://repository.jboss.org/nexus/content/groups/public/
</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>jboss-plugins</id>
<url>https://repository.jboss.org/nexus/content/groups/public/
</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
<activeProfiles>
<!--make the profile active all the time -->
<activeProfile>repos</activeProfile>
</activeProfiles>
</settings>
5) MAVEN_OPTS is "-Xms128m -Xmx768m"
6) Os is windows.
I'm getting test failures:
Tests in error:
testLongInElementsByHQL(org.hibernate.test.criteria.LongInElementsTest)
exactly as in
https://hibernate.onjira.com/browse/HHH-2166bug reporting, commenting out test
Getting another 2 errors:
testExternalJar(org.hibernate.ejb.test.packaging.PackagedEntityManagerTest)
testORMFileOnMainAndExplicitJars(org.hibernate.ejb.test.packaging.PackagedEnti
after commenting this ones other tests fails:
testSQLReferences(org.hibernate.sql.TemplateTest)
testQuotedSQLReferences(org.hibernate.sql.TemplateTest)
testPropertyReference(org.hibernate.sql.TemplateTest)
testFunctionReference(org.hibernate.sql.TemplateTest)
testQualifiedFunctionReference(org.hibernate.sql.TemplateTest)
testDoubleQualifiedFunctionReference(org.hibernate.sql.TemplateTest)
testFunctionWithPropertyReferenceAsParam(org.hibernate.sql.TemplateTest)
testNestedFunctionReferences(org.hibernate.sql.TemplateTest)
testComplexNestedFunctionReferences(org.hibernate.sql.TemplateTest)
testCollation(org.hibernate.sql.TemplateTest)
testCollationAndOrdering(org.hibernate.sql.TemplateTest)
testComponentReferences(org.hibernate.sql.TemplateTest)
testComponentDerefReferences(org.hibernate.sql.TemplateTest)
and I gave up.
What am i doing wrong?