Skip to content

Commit

Permalink
fix: removed unnecessary semicolon from build.gradle (#3670)
Browse files Browse the repository at this point in the history
* Removed unnecessary semicolons in metadata/build.gradle (jkube/gradle-plugin).

Signed-off-by: Andrei Chirila <enslavedemperor07@gmail.com>
  • Loading branch information
andreichirila0712 authored Feb 12, 2025
1 parent a726930 commit d19194e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradle-plugin/it/src/it/metadata/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ repositories {
mavenCentral()
}

Properties allAnnotations = new Properties();
allAnnotations.put("keyinall", "valueinall");
allAnnotations.put("multiline/config", "proxyMetadata:\n ISTIO_META_DNS_CAPTURE: \"false\"\nholdUntilProxyStarts: true");
Properties allAnnotations = new Properties()
allAnnotations.put("keyinall", "valueinall")
allAnnotations.put("multiline/config", "proxyMetadata:\n ISTIO_META_DNS_CAPTURE: \"false\"\nholdUntilProxyStarts: true")

kubernetes {
offline = true
Expand Down

0 comments on commit d19194e

Please sign in to comment.