exclude release and version-agnostic tests from release Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
diff --git a/tests/release-test/pom.xml b/tests/release-test/pom.xml index 3711537..246040a 100644 --- a/tests/release-test/pom.xml +++ b/tests/release-test/pom.xml
@@ -58,6 +58,13 @@ </includes> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build>
diff --git a/tests/version-agnostic/pom.xml b/tests/version-agnostic/pom.xml index 0ac7524..9949964 100644 --- a/tests/version-agnostic/pom.xml +++ b/tests/version-agnostic/pom.xml
@@ -75,6 +75,13 @@ <bsdTemplateFile>etc/config/edl-copyright.txt</bsdTemplateFile> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build>