Skip to content

Commit

Permalink
Fix jmh not being able to run
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Jan 24, 2025
1 parent aef3cbc commit 177206a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions buildSrc/src/main/kotlin/sf-java-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,9 @@ java {
withJavadocJar()
withSourcesJar()
}

afterEvaluate {
tasks.withType<Zip> {
isZip64 = true
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public Challenge httpChallenge(Authorization auth) throws AcmeException {
log.info("The file must not contain any leading or trailing whitespaces or line breaks!");
log.info("If you're ready, dismiss the dialog...");

String message = """
var message = """
Please create a file in your web server's base directory.
http://%s/.well-known/acme-challenge/%s
Expand All @@ -250,7 +250,7 @@ public Challenge dnsChallenge(Authorization auth) throws AcmeException {
log.info("{} IN TXT {}", Dns01Challenge.toRRName(auth.getIdentifier()), challenge.getDigest());
log.info("If you're ready, dismiss the dialog...");

String message = """
var message = """
Please create a TXT record:
%s IN TXT %s""".formatted(Dns01Challenge.toRRName(auth.getIdentifier()), challenge.getDigest());
Expand Down

0 comments on commit 177206a

Please sign in to comment.