Explained how to suppress dependency-scanning in documentation
[hibernate4-maven-plugin] / src / it / ignored-dependency / schema.sql
diff --git a/src/it/ignored-dependency/schema.sql b/src/it/ignored-dependency/schema.sql
new file mode 100644 (file)
index 0000000..510de4f
--- /dev/null
@@ -0,0 +1,7 @@
+
+    create table MainEntity (
+        id int8 not null,
+        primary key (id)
+    );
+
+    create sequence hibernate_sequence;