Skip to content

Commit

Permalink
Merge pull request quarkus-qe#107 from kshpak/dragonball/bompath
Browse files Browse the repository at this point in the history
Change path for quarkus platform bom in CodeQuarkusSiteTest
  • Loading branch information
Sgitario authored Aug 31, 2021
2 parents d1647ee + bacc823 commit ef2b5c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void validateQuarkusVersionMatch(TestInfo testInfo) throws Exception{
LOGGER.warn("System property 'maven.repo.local' is not specified. Skip test execution.");
return;
}
Path quarkusProductBomPath = Paths.get(System.getProperty("maven.repo.local")).resolve("com/redhat/quarkus/quarkus-product-bom");
Path quarkusProductBomPath = Paths.get(System.getProperty("maven.repo.local")).resolve("com/redhat/quarkus/platform/quarkus-bom");
try (Stream<Path> paths = Files.walk(quarkusProductBomPath)) {
List<Path> folders = paths.filter(Files::isDirectory).collect(Collectors.toList());
quarkusPlatformVersion = folders.get(1).getFileName().toString();
Expand Down

0 comments on commit ef2b5c0

Please sign in to comment.