Skip to content

Commit

Permalink
Merge pull request #2693 from square/bquenaudon.2023-10-20.spotlesswi…
Browse files Browse the repository at this point in the history
…ndows

Use platform slashes in order to please spotless on windows
  • Loading branch information
oldergod authored Oct 21, 2023
2 parents d58f02b + fe3127c commit 61a0425
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class WireBuildPlugin : Plugin<Project> {
} else {
target("src/**/*.java")
// Avoid 'build' folders within test fixture projects which may contain generated sources.
targetExclude("src/test/projects/**/build/**")
targetExclude("src/test/projects/**")
}
targetExcludeIfContentContains("// Code generated by Wire protocol buffer compiler")
googleJavaFormat(libs.googleJavaFormat.get().version)
Expand All @@ -142,7 +142,7 @@ class WireBuildPlugin : Plugin<Project> {
target("src/**/*.kt")
targetExcludeIfContentContains("// Code generated by Wire protocol buffer compiler")
// Avoid 'build' folders within test fixture projects which may contain generated sources.
targetExclude("src/test/projects/**/build/**")
targetExclude("src/test/projects/**")
}
trimTrailingWhitespace()
endWithNewline()
Expand Down

0 comments on commit 61a0425

Please sign in to comment.