diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/pom.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/runtime/pom.xml b/runtime/pom.xml index e4f1be1..ac576cc 100644 --- a/runtime/pom.xml +++ b/runtime/pom.xml @@ -26,6 +26,7 @@ <build> <plugins> + <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-bootstrap-maven-plugin</artifactId> @@ -42,6 +43,7 @@ </execution> </executions> </plugin> + <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> @@ -54,7 +56,21 @@ </annotationProcessorPaths> </configuration> </plugin> + + <plugin> + <artifactId>maven-jar-plugin</artifactId> + <version>${jar-plugin.version}</version> + <configuration> + <archive> + <manifestEntries> + <Automatic-Module-Name>eu.mulk.quarkus.googlecloud.jsonlogging</Automatic-Module-Name> + </manifestEntries> + </archive> + </configuration> + </plugin> + </plugins> + </build> </project> |