Integration-Tests are skiped, if "maven.test.skip" is set to true
[hibernate4-maven-plugin] / src / it / ignored-dependency / schema.sql
1
2     create table MainEntity (
3         id int8 not null,
4         primary key (id)
5     );
6
7     create sequence hibernate_sequence;