-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vertx Logger and ConfigProperties was deprecated
- Loading branch information
pablo gonzalez granados
committed
Jun 1, 2021
1 parent
4f9615a
commit 7153345
Showing
9 changed files
with
31 additions
and
31 deletions.
There are no files selected for viewing
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
12 changes: 7 additions & 5 deletions
12
...kus-properties-config-all/src/main/java/io/quarkus/qe/config/AntagonistConfiguration.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 |
---|---|---|
@@ -1,15 +1,17 @@ | ||
package io.quarkus.qe.config; | ||
|
||
import io.quarkus.arc.config.ConfigProperties; | ||
import io.smallrye.config.ConfigMapping; | ||
|
||
@ConfigProperties(prefix = "antagonist") | ||
@ConfigMapping(prefix = "antagonist") | ||
public class AntagonistConfiguration { | ||
public String message; | ||
public String name; | ||
public AntagonistWifeConfig wife; | ||
|
||
public static class AntagonistWifeConfig { | ||
public String name; | ||
public String message; | ||
// TODO: https://github.com/quarkusio/quarkus/issues/17545 | ||
public interface AntagonistWifeConfig { | ||
String name(); | ||
|
||
String message(); | ||
} | ||
} |
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
10 changes: 0 additions & 10 deletions
10
302-quarkus-vertx-jwt/src/main/java/io/quarkus/qe/vertx/web/config/JwtClaims.java
This file was deleted.
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