Skip to content

Commit

Permalink
fix: Quarkus library not generated for Gradle based projects (#643)
Browse files Browse the repository at this point in the history
Fixes #642

Signed-off-by: Jeff MAURY <[email protected]>
  • Loading branch information
jeffmaury authored Aug 19, 2022
1 parent a37eedc commit 467a2f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ private Path generateCustomGradleSettings(String basePath, Path customBuildFile)
try (Reader reader = Files.newBufferedReader(path, StandardCharsets.UTF_8)) {
content = IOUtils.toString(reader);
} catch (IOException e) {}
content += System.lineSeparator() + "rootProject.buildFileName ='" + customBuildFile.getFileName().toFile().getName() + "'";
content += System.lineSeparator() + "rootProject.buildFileName =\"" + customBuildFile.getFileName().toFile().getName() + "\"";
Path customPath = Files.createTempFile(base, null, getScriptExtension());
try (Writer writer = Files.newBufferedWriter(customPath, StandardCharsets.UTF_8)) {
IOUtils.write(content, writer);
Expand Down

1 comment on commit 467a2f4

@xunit-reporter
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test status

Success Failed Errored Skipped
0 2 0 0

Please sign in to comment.