diff --git a/pom.xml b/pom.xml
index 4c7da7765..aedf1e8dc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -296,6 +296,13 @@
default
+
+ empty
+
+ empty
+ false
+
+
olm
diff --git a/src/test/java/io/apicurio/registry/systemtests/EmptyTest.java b/src/test/java/io/apicurio/registry/systemtests/EmptyTest.java
new file mode 100644
index 000000000..3f854b941
--- /dev/null
+++ b/src/test/java/io/apicurio/registry/systemtests/EmptyTest.java
@@ -0,0 +1,12 @@
+package io.apicurio.registry.systemtests;
+
+import org.junit.jupiter.api.Tag;
+import org.junit.jupiter.api.Test;
+
+public class EmptyTest {
+ @Test
+ @Tag("empty")
+ public void emptyTest() {
+ System.out.println("Empty test!");
+ }
+}