|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <parent> |
| 6 | + <artifactId>quarkus-vertx-http-parent</artifactId> |
| 7 | + <groupId>io.quarkus</groupId> |
| 8 | + <version>999-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + <modelVersion>4.0.0</modelVersion> |
| 11 | + |
| 12 | + <artifactId>quarkus-devui-deployment</artifactId> |
| 13 | + <name>Quarkus - Dev UI - Deployment</name> |
| 14 | + |
| 15 | + <dependencies> |
| 16 | + <dependency> |
| 17 | + <groupId>io.quarkus</groupId> |
| 18 | + <artifactId>quarkus-devui</artifactId> |
| 19 | + <version>${project.version}</version> |
| 20 | + </dependency> |
| 21 | + <dependency> |
| 22 | + <groupId>io.quarkus</groupId> |
| 23 | + <artifactId>quarkus-vertx-http-deployment</artifactId> |
| 24 | + </dependency> |
| 25 | + |
| 26 | + <dependency> |
| 27 | + <groupId>io.quarkus</groupId> |
| 28 | + <artifactId>quarkus-vertx-http-dev-ui-spi</artifactId> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>io.quarkus</groupId> |
| 32 | + <artifactId>quarkus-vertx-http-dev-ui-resources</artifactId> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>io.mvnpm</groupId> |
| 36 | + <artifactId>importmap</artifactId> |
| 37 | + </dependency> |
| 38 | + <!-- Used for the dev ui. Note that there is no corresponding runtime dependency --> |
| 39 | + <dependency> |
| 40 | + <groupId>io.quarkus.qute</groupId> |
| 41 | + <artifactId>qute-core</artifactId> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.yaml</groupId> |
| 45 | + <artifactId>snakeyaml</artifactId> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 49 | + <artifactId>jackson-databind</artifactId> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 53 | + <artifactId>jackson-datatype-jdk8</artifactId> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>io.quarkus</groupId> |
| 57 | + <artifactId>quarkus-devtools-common</artifactId> |
| 58 | + <exclusions> |
| 59 | + <exclusion> |
| 60 | + <groupId>org.apache.maven.resolver</groupId> |
| 61 | + <artifactId>maven-resolver-connector-basic</artifactId> |
| 62 | + </exclusion> |
| 63 | + </exclusions> |
| 64 | + </dependency> |
| 65 | + |
| 66 | + <dependency> |
| 67 | + <groupId>io.quarkus</groupId> |
| 68 | + <artifactId>quarkus-vertx-http-dev-ui-tests</artifactId> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>io.quarkus</groupId> |
| 73 | + <artifactId>quarkus-junit5</artifactId> |
| 74 | + <scope>test</scope> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>io.quarkus</groupId> |
| 78 | + <artifactId>quarkus-junit5-internal</artifactId> |
| 79 | + <scope>test</scope> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>io.vertx</groupId> |
| 83 | + <artifactId>vertx-web-client</artifactId> |
| 84 | + <scope>test</scope> |
| 85 | + </dependency> |
| 86 | + <dependency> |
| 87 | + <groupId>io.rest-assured</groupId> |
| 88 | + <artifactId>rest-assured</artifactId> |
| 89 | + <scope>test</scope> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>org.awaitility</groupId> |
| 93 | + <artifactId>awaitility</artifactId> |
| 94 | + <scope>test</scope> |
| 95 | + </dependency> |
| 96 | + <dependency> |
| 97 | + <groupId>org.assertj</groupId> |
| 98 | + <artifactId>assertj-core</artifactId> |
| 99 | + <scope>test</scope> |
| 100 | + </dependency> |
| 101 | + </dependencies> |
| 102 | + |
| 103 | + <build> |
| 104 | + <plugins> |
| 105 | + <plugin> |
| 106 | + <artifactId>maven-compiler-plugin</artifactId> |
| 107 | + <executions> |
| 108 | + <execution> |
| 109 | + <id>default-compile</id> |
| 110 | + <configuration> |
| 111 | + <annotationProcessorPaths> |
| 112 | + <path> |
| 113 | + <groupId>io.quarkus</groupId> |
| 114 | + <artifactId>quarkus-extension-processor</artifactId> |
| 115 | + <version>${project.version}</version> |
| 116 | + </path> |
| 117 | + </annotationProcessorPaths> |
| 118 | + </configuration> |
| 119 | + </execution> |
| 120 | + </executions> |
| 121 | + </plugin> |
| 122 | + </plugins> |
| 123 | + </build> |
| 124 | +</project> |
0 commit comments