Created
July 6, 2020 03:55
-
-
Save obbyK/e1ce4118d820c15bbdb26b89dff0f9f9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<artifactId>quarkus-test-hazelcast</artifactId> | |
<groupId>quarkus.hazelcast</groupId> | |
<name>hazelcast-test</name> | |
<version>1.0.0-SNAPSHOT</version> | |
<properties> | |
<compiler-plugin.version>3.8.1</compiler-plugin.version> | |
<maven.compiler.parameters>true</maven.compiler.parameters> | |
<maven.compiler.source>11</maven.compiler.source> | |
<maven.compiler.target>11</maven.compiler.target> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | |
<quarkus-plugin.version>1.5.2.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.5.2.Final</quarkus.platform.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>com.hazelcast</groupId> | |
<artifactId>quarkus-hazelcast-client</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>io.quarkus</groupId> | |
<artifactId>quarkus-scheduler</artifactId> | |
</dependency> | |
</dependencies> | |
<build> | |
<finalName>hazelcast-test</finalName> | |
<plugins> | |
<plugin> | |
<groupId>io.quarkus</groupId> | |
<artifactId>quarkus-maven-plugin</artifactId> | |
<version>${quarkus-plugin.version}</version> | |
<executions> | |
<execution> | |
<goals> | |
<goal>build</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>${compiler-plugin.version}</version> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment