Skip to content

Commit

Permalink
Disable the tests that do not apply for HSQLDB 1.8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed Sep 14, 2012
1 parent b577da8 commit 00c6088
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,22 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<!-- Tests that don't apply for HSQLDB -->
<exclude>org/hibernate/tool/test/jdbc2cfg/OracleCompositeIdOrderTest.java</exclude>
<exclude>org/hibernate/tool/test/jdbc2cfg/OracleViewsTest.java</exclude>
<exclude>org/hibernate/tool/test/jdbc2cfg/identity/H2IdentityTest.java</exclude>
<exclude>org/hibernate/tool/test/jdbc2cfg/identity/HSQLIdentityTest.java</exclude>
<exclude>org/hibernate/tool/test/jdbc2cfg/identity/MySQLIdentityTest.java</exclude>
<exclude>org/hibernate/tool/test/jdbc2cfg/identity/SQLServerIdentityTest.java</exclude>
<!-- HSQLDB 1.8.0.2 does not support multiple schemas -->
<exclude>org/hibernate/tool/test/jdbc2cfg/TernarySchemaTest.java</exclude>
</excludes>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
Expand Down

0 comments on commit 00c6088

Please sign in to comment.