Turned of doclint, that was introduced in Java 8
[hibernate4-maven-plugin] / src / it / tutorials / schema-annotations.sql
1
2     drop table EVENTS if exists;
3
4     create table EVENTS (
5         id bigint not null,
6         EVENT_DATE timestamp,
7         title varchar(255),
8         primary key (id)
9     );