Solves Issue [#9186] Update to 2.5.3 and small typo fix
This commit is contained in:
parent
44184ab0cb
commit
68271ba486
6 changed files with 7 additions and 7 deletions
2
pom.xml
2
pom.xml
|
@ -35,7 +35,7 @@
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<quarkus.version>2.5.2.Final</quarkus.version>
|
<quarkus.version>2.5.3.Final</quarkus.version>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Performing a Wildfly upgrade? Run the:
|
Performing a Wildfly upgrade? Run the:
|
||||||
|
|
|
@ -20,7 +20,7 @@ package org.keycloak.quarkus.runtime.cli.command;
|
||||||
import picocli.CommandLine.Command;
|
import picocli.CommandLine.Command;
|
||||||
|
|
||||||
@Command(name = "tools",
|
@Command(name = "tools",
|
||||||
description = "%nUtilities for use and interaction with the server.",
|
description = "Utilities for use and interaction with the server.",
|
||||||
subcommands = {Completion.class})
|
subcommands = {Completion.class})
|
||||||
public class Tools {
|
public class Tools {
|
||||||
|
|
||||||
|
|
|
@ -53,12 +53,12 @@ public interface CLIResult extends LaunchResult {
|
||||||
|
|
||||||
default void assertNotDevMode() {
|
default void assertNotDevMode() {
|
||||||
assertFalse(getOutput().contains("Running the server in dev mode."),
|
assertFalse(getOutput().contains("Running the server in dev mode."),
|
||||||
() -> "The standard output:\n" + getOutput() + "does include the Start Dev output");
|
() -> "The standard output:\n" + getOutput() + "\ndoes include the Start Dev output");
|
||||||
}
|
}
|
||||||
|
|
||||||
default void assertStartedDevMode() {
|
default void assertStartedDevMode() {
|
||||||
assertTrue(getOutput().contains("Running the server in dev mode."),
|
assertTrue(getOutput().contains("Running the server in dev mode."),
|
||||||
() -> "The standard output:\n" + getOutput() + "doesn't include the Start Dev output");
|
() -> "The standard output:\n" + getOutput() + "\ndoesn't include the Start Dev output");
|
||||||
}
|
}
|
||||||
|
|
||||||
default void assertError(String msg) {
|
default void assertError(String msg) {
|
||||||
|
|
|
@ -31,7 +31,7 @@ Commands:
|
||||||
export Export data from realms to a file or directory.
|
export Export data from realms to a file or directory.
|
||||||
import Import data from a directory or a file.
|
import Import data from a directory or a file.
|
||||||
show-config Print out the current configuration.
|
show-config Print out the current configuration.
|
||||||
tools %nUtilities for use and interaction with the server.
|
tools Utilities for use and interaction with the server.
|
||||||
completion Generate bash/zsh completion script for kc.sh.
|
completion Generate bash/zsh completion script for kc.sh.
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
|
@ -31,7 +31,7 @@ Commands:
|
||||||
export Export data from realms to a file or directory.
|
export Export data from realms to a file or directory.
|
||||||
import Import data from a directory or a file.
|
import Import data from a directory or a file.
|
||||||
show-config Print out the current configuration.
|
show-config Print out the current configuration.
|
||||||
tools %nUtilities for use and interaction with the server.
|
tools Utilities for use and interaction with the server.
|
||||||
completion Generate bash/zsh completion script for kc.sh.
|
completion Generate bash/zsh completion script for kc.sh.
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
|
@ -31,7 +31,7 @@ Commands:
|
||||||
export Export data from realms to a file or directory.
|
export Export data from realms to a file or directory.
|
||||||
import Import data from a directory or a file.
|
import Import data from a directory or a file.
|
||||||
show-config Print out the current configuration.
|
show-config Print out the current configuration.
|
||||||
tools %nUtilities for use and interaction with the server.
|
tools Utilities for use and interaction with the server.
|
||||||
completion Generate bash/zsh completion script for kc.sh.
|
completion Generate bash/zsh completion script for kc.sh.
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
Loading…
Reference in a new issue