diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index 7dc01f052a..7beb5f132a 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -571,6 +571,14 @@
+
+ regression
+
+ regression
+ false
+
+
+
serdes
diff --git a/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/ArtifactsIT.java b/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/ArtifactsIT.java
index 778aae7f70..bf7e5df7f0 100644
--- a/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/ArtifactsIT.java
+++ b/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/ArtifactsIT.java
@@ -61,6 +61,7 @@
import static org.junit.jupiter.api.Assertions.assertNotNull;
@Tag(Constants.SMOKE)
+@Tag(Constants.REGRESSION)
@QuarkusIntegrationTest
class ArtifactsIT extends ApicurioRegistryBaseIT {
diff --git a/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/MetadataIT.java b/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/MetadataIT.java
index 14936d4f99..46b31f340c 100644
--- a/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/MetadataIT.java
+++ b/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/MetadataIT.java
@@ -39,6 +39,7 @@
import static org.hamcrest.MatcherAssert.assertThat;
@Tag(Constants.SMOKE)
+@Tag(Constants.REGRESSION)
@QuarkusIntegrationTest
class MetadataIT extends ApicurioRegistryBaseIT {
diff --git a/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/RulesResourceIT.java b/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/RulesResourceIT.java
index 617a639bda..ee3b7965ed 100644
--- a/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/RulesResourceIT.java
+++ b/integration-tests/src/test/java/io/apicurio/tests/smokeTests/apicurio/RulesResourceIT.java
@@ -46,6 +46,7 @@
import static org.junit.jupiter.api.Assertions.assertNotNull;
@Tag(Constants.SMOKE)
+@Tag(Constants.REGRESSION)
@QuarkusIntegrationTest
class RulesResourceIT extends ApicurioRegistryBaseIT {
diff --git a/integration-tests/src/test/java/io/apicurio/tests/utils/Constants.java b/integration-tests/src/test/java/io/apicurio/tests/utils/Constants.java
index 53641cecaf..ac595567df 100644
--- a/integration-tests/src/test/java/io/apicurio/tests/utils/Constants.java
+++ b/integration-tests/src/test/java/io/apicurio/tests/utils/Constants.java
@@ -32,6 +32,10 @@ public interface Constants {
* Tag for tests, which are testing basic functionality
*/
String SMOKE = "smoke";
+ /**
+ * Tag for tests, which are used for v3 regression testing (tests using the v2 API against a v3 server)
+ */
+ String REGRESSION = "regression";
/**
* Tag for tests, which are working with the cluster (integration of kafka with registries) such as serdes and converters
*/