Skip to content

Commit

Permalink
Fix Gradle placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
srnyx committed Dec 30, 2022
1 parent 5f1b05d commit fcfa089
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@ subprojects {

// Replace '${name}' and '${version}' in 'plugin.yml'
processResources {
inputs.property("name", project.name)
inputs.property("version", version)
filesMatching("**/plugin.yml") {
expand("name" to project.name, "version" to project.version)
expand("name" to project.name, "version" to version)
}
}
}
Expand Down

0 comments on commit fcfa089

Please sign in to comment.