Skip to content

Commit 745b1bc

Browse files
committed
poc
1 parent 91ff3e7 commit 745b1bc

File tree

157 files changed

+271
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+271
-3
lines changed

bom/application/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,16 @@
610610
<artifactId>quarkus-caffeine-deployment</artifactId>
611611
<version>${project.version}</version>
612612
</dependency>
613+
<dependency>
614+
<groupId>io.quarkus</groupId>
615+
<artifactId>quarkus-devui</artifactId>
616+
<version>${project.version}</version>
617+
</dependency>
618+
<dependency>
619+
<groupId>io.quarkus</groupId>
620+
<artifactId>quarkus-devui-deployment</artifactId>
621+
<version>${project.version}</version>
622+
</dependency>
613623
<dependency>
614624
<groupId>io.quarkus</groupId>
615625
<artifactId>quarkus-jacoco</artifactId>

devtools/bom-descriptor-json/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,19 @@
473473
</exclusion>
474474
</exclusions>
475475
</dependency>
476+
<dependency>
477+
<groupId>io.quarkus</groupId>
478+
<artifactId>quarkus-devui</artifactId>
479+
<version>${project.version}</version>
480+
<type>pom</type>
481+
<scope>test</scope>
482+
<exclusions>
483+
<exclusion>
484+
<groupId>*</groupId>
485+
<artifactId>*</artifactId>
486+
</exclusion>
487+
</exclusions>
488+
</dependency>
476489
<dependency>
477490
<groupId>io.quarkus</groupId>
478491
<artifactId>quarkus-elasticsearch-java-client</artifactId>

docs/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,19 @@
482482
</exclusion>
483483
</exclusions>
484484
</dependency>
485+
<dependency>
486+
<groupId>io.quarkus</groupId>
487+
<artifactId>quarkus-devui-deployment</artifactId>
488+
<version>${project.version}</version>
489+
<type>pom</type>
490+
<scope>test</scope>
491+
<exclusions>
492+
<exclusion>
493+
<groupId>*</groupId>
494+
<artifactId>*</artifactId>
495+
</exclusion>
496+
</exclusions>
497+
</dependency>
485498
<dependency>
486499
<groupId>io.quarkus</groupId>
487500
<artifactId>quarkus-elasticsearch-java-client-deployment</artifactId>
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
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-devui-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>

extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/BuildTimeConstBuildItem.java renamed to extensions/devui/deployment/src/main/java/io/quarkus/devui/deployment/BuildTimeConstBuildItem.java

File renamed without changes.

extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/BuildTimeContentProcessor.java renamed to extensions/devui/deployment/src/main/java/io/quarkus/devui/deployment/BuildTimeContentProcessor.java

File renamed without changes.

extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/DeploymentMethodBuildItem.java renamed to extensions/devui/deployment/src/main/java/io/quarkus/devui/deployment/DeploymentMethodBuildItem.java

File renamed without changes.

extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/DevUIConfig.java renamed to extensions/devui/deployment/src/main/java/io/quarkus/devui/deployment/DevUIConfig.java

File renamed without changes.

extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/DevUIProcessor.java renamed to extensions/devui/deployment/src/main/java/io/quarkus/devui/deployment/DevUIProcessor.java

File renamed without changes.

extensions/vertx-http/deployment/src/main/java/io/quarkus/devui/deployment/DevUIRoutesBuildItem.java renamed to extensions/devui/deployment/src/main/java/io/quarkus/devui/deployment/DevUIRoutesBuildItem.java

File renamed without changes.

0 commit comments

Comments
 (0)