Skip to content

Commit 5fbad39

Browse files
committed
poc
1 parent abc652e commit 5fbad39

File tree

157 files changed

+270
-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

+270
-3
lines changed

bom/application/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,16 @@
616616
<artifactId>quarkus-caffeine-deployment</artifactId>
617617
<version>${project.version}</version>
618618
</dependency>
619+
<dependency>
620+
<groupId>io.quarkus</groupId>
621+
<artifactId>quarkus-devui</artifactId>
622+
<version>${project.version}</version>
623+
</dependency>
624+
<dependency>
625+
<groupId>io.quarkus</groupId>
626+
<artifactId>quarkus-devui-deployment</artifactId>
627+
<version>${project.version}</version>
628+
</dependency>
619629
<dependency>
620630
<groupId>io.quarkus</groupId>
621631
<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: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
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+
</dependency>
20+
<dependency>
21+
<groupId>io.quarkus</groupId>
22+
<artifactId>quarkus-vertx-http-deployment</artifactId>
23+
</dependency>
24+
25+
<dependency>
26+
<groupId>io.quarkus</groupId>
27+
<artifactId>quarkus-vertx-http-dev-ui-spi</artifactId>
28+
</dependency>
29+
<dependency>
30+
<groupId>io.quarkus</groupId>
31+
<artifactId>quarkus-vertx-http-dev-ui-resources</artifactId>
32+
</dependency>
33+
<dependency>
34+
<groupId>io.mvnpm</groupId>
35+
<artifactId>importmap</artifactId>
36+
</dependency>
37+
<!-- Used for the dev ui. Note that there is no corresponding runtime dependency -->
38+
<dependency>
39+
<groupId>io.quarkus.qute</groupId>
40+
<artifactId>qute-core</artifactId>
41+
</dependency>
42+
<dependency>
43+
<groupId>org.yaml</groupId>
44+
<artifactId>snakeyaml</artifactId>
45+
</dependency>
46+
<dependency>
47+
<groupId>com.fasterxml.jackson.core</groupId>
48+
<artifactId>jackson-databind</artifactId>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.fasterxml.jackson.datatype</groupId>
52+
<artifactId>jackson-datatype-jdk8</artifactId>
53+
</dependency>
54+
<dependency>
55+
<groupId>io.quarkus</groupId>
56+
<artifactId>quarkus-devtools-common</artifactId>
57+
<exclusions>
58+
<exclusion>
59+
<groupId>org.apache.maven.resolver</groupId>
60+
<artifactId>maven-resolver-connector-basic</artifactId>
61+
</exclusion>
62+
</exclusions>
63+
</dependency>
64+
65+
<dependency>
66+
<groupId>io.quarkus</groupId>
67+
<artifactId>quarkus-vertx-http-dev-ui-tests</artifactId>
68+
<scope>test</scope>
69+
</dependency>
70+
<dependency>
71+
<groupId>io.quarkus</groupId>
72+
<artifactId>quarkus-junit5</artifactId>
73+
<scope>test</scope>
74+
</dependency>
75+
<dependency>
76+
<groupId>io.quarkus</groupId>
77+
<artifactId>quarkus-junit5-internal</artifactId>
78+
<scope>test</scope>
79+
</dependency>
80+
<dependency>
81+
<groupId>io.vertx</groupId>
82+
<artifactId>vertx-web-client</artifactId>
83+
<scope>test</scope>
84+
</dependency>
85+
<dependency>
86+
<groupId>io.rest-assured</groupId>
87+
<artifactId>rest-assured</artifactId>
88+
<scope>test</scope>
89+
</dependency>
90+
<dependency>
91+
<groupId>org.awaitility</groupId>
92+
<artifactId>awaitility</artifactId>
93+
<scope>test</scope>
94+
</dependency>
95+
<dependency>
96+
<groupId>org.assertj</groupId>
97+
<artifactId>assertj-core</artifactId>
98+
<scope>test</scope>
99+
</dependency>
100+
</dependencies>
101+
102+
<build>
103+
<plugins>
104+
<plugin>
105+
<artifactId>maven-compiler-plugin</artifactId>
106+
<executions>
107+
<execution>
108+
<id>default-compile</id>
109+
<configuration>
110+
<annotationProcessorPaths>
111+
<path>
112+
<groupId>io.quarkus</groupId>
113+
<artifactId>quarkus-extension-processor</artifactId>
114+
<version>${project.version}</version>
115+
</path>
116+
</annotationProcessorPaths>
117+
</configuration>
118+
</execution>
119+
</executions>
120+
</plugin>
121+
</plugins>
122+
</build>
123+
</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)