Skip to content

Commit

Permalink
Added quarkus core version to quarkus --info output
Browse files Browse the repository at this point in the history
  • Loading branch information
aloubyansky committed Mar 8, 2024
1 parent 5f1dd6c commit 52e86d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions domino/app/src/main/java/io/quarkus/domino/cli/Quarkus.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,14 @@ public Integer call() throws Exception {
if (info) {
log.info("");
log.info("Platform version: " + version);
log.info("Quarkus core version: " + platform.getCore().getQuarkusCoreVersion());
log.info("Maven plugin: " + platform.getMavenPlugin().toCompactCoords());
log.info("");
log.info("Member BOMs:");
for (var m : platform.getMembers()) {
log.info("- " + m.getBom().toCompactCoords());
}
log.info("");
log.info("Maven plugin: " + platform.getMavenPlugin().toCompactCoords());
log.info("");
return 0;
}

Expand Down

0 comments on commit 52e86d7

Please sign in to comment.