This is an automated email from the ASF dual-hosted git repository. mariofusco pushed a commit to branch q3lts in repository https://gitbox.apache.org/repos/asf/incubator-kie-kogito-apps.git
commit 307bf1d13d24ebe7066b417f791e69399b478206 Author: Pere Fernández <[email protected]> AuthorDate: Tue Dec 12 12:28:10 2023 +0100 - Change `jib-maven-plugin` base image to fix `SpringBootTrustyExplainabilityEnd2EndIT` (#1936) --- .../integration-tests-trusty-service-springboot/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps-integration-tests/integration-tests-trusty-service/integration-tests-trusty-service-springboot/pom.xml b/apps-integration-tests/integration-tests-trusty-service/integration-tests-trusty-service-springboot/pom.xml index 4dc2971fb..c401defcf 100644 --- a/apps-integration-tests/integration-tests-trusty-service/integration-tests-trusty-service-springboot/pom.xml +++ b/apps-integration-tests/integration-tests-trusty-service/integration-tests-trusty-service-springboot/pom.xml @@ -34,6 +34,7 @@ <container.image.kogito-service>org.kie.kogito/integration-tests-trusty-service-springboot:${project.version}</container.image.kogito-service> <sonar.exclusions>**/KogitoApplication.java</sonar.exclusions> <version.jib-maven-plugin>2.5.2</version.jib-maven-plugin> + <jib-maven-plugin.container.image>eclipse-temurin:17-jre</jib-maven-plugin.container.image> </properties> <!-- The BOM guarantees the transitive dependencies --> @@ -125,6 +126,9 @@ <version>${version.jib-maven-plugin}</version> <configuration> <skip>${skip.springboot}</skip> + <from> + <image>${jib-maven-plugin.container.image}</image> + </from> <to> <image>${container.image.kogito-service}</image> </to> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
