1 changed files with 124 additions and 0 deletions
@ -0,0 +1,124 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||||
|
<modelVersion>4.0.0</modelVersion> |
||||||
|
<groupId>me.jochrist</groupId> |
||||||
|
<artifactId>kafka-producer</artifactId> |
||||||
|
<version>1.0-SNAPSHOT</version> |
||||||
|
<properties> |
||||||
|
<compiler-plugin.version>3.8.1</compiler-plugin.version> |
||||||
|
<maven.compiler.parameters>true</maven.compiler.parameters> |
||||||
|
<maven.compiler.source>1.8</maven.compiler.source> |
||||||
|
<maven.compiler.target>1.8</maven.compiler.target> |
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
||||||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
||||||
|
<quarkus-plugin.version>1.8.1.Final</quarkus-plugin.version> |
||||||
|
<quarkus.platform.artifact-id>quarkus-universe-bom</quarkus.platform.artifact-id> |
||||||
|
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id> |
||||||
|
<quarkus.platform.version>1.8.1.Final</quarkus.platform.version> |
||||||
|
<surefire-plugin.version>3.0.0-M5</surefire-plugin.version> |
||||||
|
</properties> |
||||||
|
<dependencyManagement> |
||||||
|
<dependencies> |
||||||
|
<dependency> |
||||||
|
<groupId>${quarkus.platform.group-id}</groupId> |
||||||
|
<artifactId>${quarkus.platform.artifact-id}</artifactId> |
||||||
|
<version>${quarkus.platform.version}</version> |
||||||
|
<type>pom</type> |
||||||
|
<scope>import</scope> |
||||||
|
</dependency> |
||||||
|
</dependencies> |
||||||
|
</dependencyManagement> |
||||||
|
<dependencies> |
||||||
|
<dependency> |
||||||
|
<groupId>io.quarkus</groupId> |
||||||
|
<artifactId>quarkus-resteasy</artifactId> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>io.quarkus</groupId> |
||||||
|
<artifactId>quarkus-junit5</artifactId> |
||||||
|
<scope>test</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>io.rest-assured</groupId> |
||||||
|
<artifactId>rest-assured</artifactId> |
||||||
|
<scope>test</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>io.quarkus</groupId> |
||||||
|
<artifactId>quarkus-smallrye-reactive-messaging-kafka</artifactId> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>io.quarkus</groupId> |
||||||
|
<artifactId>quarkus-vertx</artifactId> |
||||||
|
</dependency> |
||||||
|
</dependencies> |
||||||
|
<build> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<groupId>io.quarkus</groupId> |
||||||
|
<artifactId>quarkus-maven-plugin</artifactId> |
||||||
|
<version>${quarkus-plugin.version}</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<goals> |
||||||
|
<goal>generate-code</goal> |
||||||
|
<goal>generate-code-tests</goal> |
||||||
|
<goal>build</goal> |
||||||
|
</goals> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-compiler-plugin</artifactId> |
||||||
|
<version>${compiler-plugin.version}</version> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-surefire-plugin</artifactId> |
||||||
|
<version>${surefire-plugin.version}</version> |
||||||
|
<configuration> |
||||||
|
<systemPropertyVariables> |
||||||
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
||||||
|
<maven.home>${maven.home}</maven.home> |
||||||
|
</systemPropertyVariables> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
<profiles> |
||||||
|
<profile> |
||||||
|
<id>native</id> |
||||||
|
<activation> |
||||||
|
<property> |
||||||
|
<name>native</name> |
||||||
|
</property> |
||||||
|
</activation> |
||||||
|
<build> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-failsafe-plugin</artifactId> |
||||||
|
<version>${surefire-plugin.version}</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<goals> |
||||||
|
<goal>integration-test</goal> |
||||||
|
<goal>verify</goal> |
||||||
|
</goals> |
||||||
|
<configuration> |
||||||
|
<systemPropertyVariables> |
||||||
|
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path> |
||||||
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
||||||
|
<maven.home>${maven.home}</maven.home> |
||||||
|
</systemPropertyVariables> |
||||||
|
</configuration> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
<properties> |
||||||
|
<quarkus.package.type>native</quarkus.package.type> |
||||||
|
</properties> |
||||||
|
</profile> |
||||||
|
</profiles> |
||||||
|
</project> |
||||||
Loading…
Reference in new issue