diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2021-05-03 08:04:53 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2021-05-11 21:49:21 +0200 |
commit | c8144a9c60279f8dc81b2506794acd24df31b9a3 (patch) | |
tree | 495231540cd6f04f02d7d7f22db38f36d716833a /pom.xml | |
parent | 25a6ef32df15d05904622326328882549095532f (diff) |
Initial checkin: Quarkus Google Cloud JSON Logging.
Change-Id: I264211f56c2bed4002ecdb6ead8a5321ada855fd
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 81 |
1 files changed, 81 insertions, 0 deletions
@@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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>eu.mulk.quarkus-observability</groupId> + <artifactId>quarkus-googlecloud-jsonlogging-parent</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>pom</packaging> + <name>Quarkus Google Cloud JSON Logging Extension - Parent</name> + + <modules> + <module>deployment</module> + <module>runtime</module> + </modules> + + <properties> + <maven.compiler.parameters>true</maven.compiler.parameters> + <maven.compiler.release>16</maven.compiler.release> + + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> + + <compiler-plugin.version>3.8.1</compiler-plugin.version> + <failsafe-plugin.version>${surefire-plugin.version}</failsafe-plugin.version> + <quarkus.version>1.13.3.Final</quarkus.version> + <surefire-plugin.version>3.0.0-M5</surefire-plugin.version> + </properties> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-bom</artifactId> + <version>${quarkus.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-maven-plugin</artifactId> + <version>${quarkus.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> + <maven.repo>${settings.localRepository}</maven.repo> + </systemPropertyVariables> + </configuration> + </plugin> + <plugin> + <artifactId>maven-failsafe-plugin</artifactId> + <version>${failsafe-plugin.version}</version> + <configuration> + <systemPropertyVariables> + <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> + <maven.home>${maven.home}</maven.home> + <maven.repo>${settings.localRepository}</maven.repo> + </systemPropertyVariables> + </configuration> + </plugin> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>${compiler-plugin.version}</version> + </plugin> + </plugins> + </pluginManagement> + </build> + +</project> |