Skip to content

Commit 542ed09

Browse files
committed
chore(test-plugin): update processResources for IDE warning
1 parent e07b091 commit 542ed09

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

test-plugin/build.gradle.kts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,12 @@ tasks {
3535
)
3636
inputs.properties(props)
3737
filteringCharset = "UTF-8"
38-
filesMatching("paper-plugin.yml") {
39-
expand(props)
40-
}
38+
with(copySpec {
39+
from("src/main/resources") {
40+
include("paper-plugin.yml")
41+
expand(props)
42+
}
43+
})
4144
}
4245

4346
shadowJar {

0 commit comments

Comments
 (0)