2021-10-20 08:14:40 -04:00
<?xml version="1.0"?>
<project xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 https://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 > com.baeldung.quarkus</groupId>
<artifactId > quarkus-jandex</artifactId>
<version > 1.0.0-SNAPSHOT</version>
<packaging > pom</packaging>
<modules >
<module > hello-service</module>
<module > hello-sender-beans-xml</module>
<module > hello-sender-maven-plugin</module>
<module > hello-sender-application-properties</module>
<module > hello-sender-undetected</module>
<module > hello-app</module>
</modules>
2021-11-24 06:56:12 -05:00
<dependencyManagement >
<!-- The Quarkus BOM is only available since Quarkus 2.x, and it's dependencies and plugins are compiled with JDK11, so using JDK8 will result in java.lang.UnsupportedClassVersionError -->
<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>
2021-10-20 08:14:40 -04:00
<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.platform.artifact-id > quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id > io.quarkus.platform</quarkus.platform.group-id>
2021-11-24 06:56:12 -05:00
<quarkus.platform.version > 2.4.2.Final</quarkus.platform.version>
2021-10-20 08:14:40 -04:00
<surefire-plugin.version > 3.0.0-M5</surefire-plugin.version>
</properties>
2021-11-24 06:56:12 -05:00
2021-10-20 08:14:40 -04:00
</project>