-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37680 from phillip-kruger/index-html-to-dev-ui
index.html (welcome page) now dynamic
- Loading branch information
Showing
66 changed files
with
1,878 additions
and
1,719 deletions.
There are no files selected for viewing
269 changes: 139 additions & 130 deletions
269
core/runtime/src/main/java/io/quarkus/runtime/TemplateHtmlBuilder.java
Large diffs are not rendered by default.
Oops, something went wrong.
217 changes: 217 additions & 0 deletions
217
core/runtime/src/main/resources/META-INF/template-html-builder.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 0 additions & 59 deletions
59
...s/runtime/src/main/java/io/quarkus/vertx/web/runtime/devmode/ResourceNotFoundHandler.java
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
.../runtime/src/main/java/io/quarkus/vertx/web/runtime/devmode/ResourceNotFoundRecorder.java
This file was deleted.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
...teasy/deployment/src/main/java/io/quarkus/resteasy/deployment/NonJaxRsClassBuildItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package io.quarkus.resteasy.deployment; | ||
|
||
import java.util.Map; | ||
|
||
import io.quarkus.builder.item.SimpleBuildItem; | ||
import io.quarkus.resteasy.runtime.NonJaxRsClassMappings; | ||
|
||
/** | ||
* A build item that holds Non jax-rs classes | ||
*/ | ||
public final class NonJaxRsClassBuildItem extends SimpleBuildItem { | ||
|
||
public final Map<String, NonJaxRsClassMappings> nonJaxRsPaths; | ||
|
||
public NonJaxRsClassBuildItem(Map<String, NonJaxRsClassMappings> nonJaxRsPaths) { | ||
this.nonJaxRsPaths = nonJaxRsPaths; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.