diff --git a/formcycle-adapter/formcycle-adapter-impl/pom.xml b/formcycle-adapter/formcycle-adapter-impl/pom.xml index 4d17b98b9858dc4716eeb5e06ca173c819ec1e00..7a775fb4caaea3d88bfe603f25c96166088612a4 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