From eb83b123b0bbe6f78b9b7e6f9a59241eb5a143a6 Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Thu, 15 Dec 2022 16:19:54 +0100 Subject: [PATCH] OZG-3284 fix parenthood --- .../formcycle-adapter-impl/pom.xml | 32 +++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/formcycle-adapter/formcycle-adapter-impl/pom.xml b/formcycle-adapter/formcycle-adapter-impl/pom.xml index 4d17b98b9..7a775fb4c 100644 --- a/formcycle-adapter/formcycle-adapter-impl/pom.xml +++ b/formcycle-adapter/formcycle-adapter-impl/pom.xml @@ -27,9 +27,14 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <groupId>formcycle-adapter-impl</groupId> + <parent> + <groupId>de.itvsh.kop.eingangsadapter</groupId> + <artifactId>formcycle-adapter</artifactId> + <version>1.1.0-SNAPSHOT</version> + </parent> + <artifactId>formcycle-adapter-impl</artifactId> - <version>0.0.1-SNAPSHOT</version> + <name>EM - Formcycle Adapter - Implementation</name> @@ -41,4 +46,27 @@ </plugin> </plugins> </build> + + <profiles> + <profile> + <id>ci-build</id> + <build> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <executions> + <execution> + <id>build-image</id> + <phase>install</phase> + <goals> + <goal>build-image</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project> \ No newline at end of file -- GitLab