From c7d7cdf370430561dfc10b4fa7bed0fa5f699da6 Mon Sep 17 00:00:00 2001 From: Marcono1234 Date: Sun, 13 Aug 2023 22:40:47 +0200 Subject: [PATCH] Fix graal-native-image-test module causing failure for 'Check API compatibility' (#2467) The 'Check API compatibility' workflow runs `mvn install` to install the previous version to the local Maven repository to compare it afterwards. However this fails for the graal-native-image-test module because it does not produce a JAR. Therefore skip execution of the maven-install-plugin for that module. --- graal-native-image-test/pom.xml | 9 +++++++++ pom.xml | 5 +++++ 2 files changed, 14 insertions(+) diff --git a/graal-native-image-test/pom.xml b/graal-native-image-test/pom.xml index 37f0b075b5..ce38f3eac4 100644 --- a/graal-native-image-test/pom.xml +++ b/graal-native-image-test/pom.xml @@ -85,6 +85,15 @@ true + + org.apache.maven.plugins + maven-install-plugin + + + true + + org.apache.maven.plugins maven-deploy-plugin diff --git a/pom.xml b/pom.xml index b600b78389..bbc07c32e3 100644 --- a/pom.xml +++ b/pom.xml @@ -213,6 +213,11 @@ maven-jar-plugin 3.3.0 + + org.apache.maven.plugins + maven-install-plugin + 3.1.1 + org.apache.maven.plugins maven-source-plugin