Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 4 | |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
Matthias Andreas Benkard | b8fbc37 | 2021-05-11 06:50:45 +0200 | [diff] [blame] | 8 | <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 9 | <artifactId>quarkus-googlecloud-jsonlogging-parent</artifactId> |
Matthias Andreas Benkard | 85d5b06 | 2021-12-18 19:04:28 +0100 | [diff] [blame^] | 10 | <version>3.1.4-SNAPSHOT</version> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 11 | </parent> |
Matthias Andreas Benkard | 3a997da | 2021-05-12 05:40:43 +0200 | [diff] [blame] | 12 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 13 | <artifactId>quarkus-googlecloud-jsonlogging</artifactId> |
| 14 | <name>Quarkus Google Cloud JSON Logging Extension - Runtime</name> |
| 15 | |
| 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | 82d7e44 | 2021-08-29 08:34:11 +0200 | [diff] [blame] | 19 | <artifactId>quarkus-arc</artifactId> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | c066d89 | 2021-05-11 21:27:23 +0200 | [diff] [blame] | 23 | <artifactId>quarkus-core</artifactId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | b8fbc37 | 2021-05-11 06:50:45 +0200 | [diff] [blame] | 27 | <artifactId>quarkus-jsonp</artifactId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 28 | </dependency> |
| 29 | </dependencies> |
| 30 | |
| 31 | <build> |
| 32 | <plugins> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 33 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 34 | <plugin> |
| 35 | <groupId>io.quarkus</groupId> |
| 36 | <artifactId>quarkus-bootstrap-maven-plugin</artifactId> |
| 37 | <version>${quarkus.version}</version> |
| 38 | <executions> |
| 39 | <execution> |
| 40 | <phase>compile</phase> |
| 41 | <goals> |
| 42 | <goal>extension-descriptor</goal> |
| 43 | </goals> |
| 44 | <configuration> |
| 45 | <deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment> |
| 46 | </configuration> |
| 47 | </execution> |
| 48 | </executions> |
| 49 | </plugin> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 50 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 51 | <plugin> |
| 52 | <artifactId>maven-compiler-plugin</artifactId> |
| 53 | <configuration> |
| 54 | <annotationProcessorPaths> |
| 55 | <path> |
| 56 | <groupId>io.quarkus</groupId> |
| 57 | <artifactId>quarkus-extension-processor</artifactId> |
| 58 | <version>${quarkus.version}</version> |
| 59 | </path> |
| 60 | </annotationProcessorPaths> |
| 61 | </configuration> |
| 62 | </plugin> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 63 | |
| 64 | <plugin> |
| 65 | <artifactId>maven-jar-plugin</artifactId> |
| 66 | <version>${jar-plugin.version}</version> |
| 67 | <configuration> |
| 68 | <archive> |
| 69 | <manifestEntries> |
| 70 | <Automatic-Module-Name>eu.mulk.quarkus.googlecloud.jsonlogging</Automatic-Module-Name> |
| 71 | </manifestEntries> |
| 72 | </archive> |
| 73 | </configuration> |
| 74 | </plugin> |
| 75 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 76 | </plugins> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 77 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 78 | </build> |
| 79 | |
| 80 | </project> |