Skip to content

Commit

Permalink
Merge branch '2.5.x' into 2.6.x
Browse files Browse the repository at this point in the history
Closes gh-30059
  • Loading branch information
wilkinsona committed Mar 3, 2022
2 parents 2ba8b49 + 2b98fce commit fd3248b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Expand Up @@ -33,7 +33,9 @@ If you are using an `additional-spring-configuration-metadata.json` file, the `c

[source,gradle,indent=0,subs="verbatim"]
----
compileJava.inputs.files(processResources)
tasks.named('compileJava') {
inputs.files(tasks.named('processResources'))
}
----

This dependency ensures that the additional metadata is available when the annotation processor runs during compilation.
Expand Down
Expand Up @@ -30,7 +30,7 @@ The following example shows the equivalent Gradle configuration:

[source,gradle,indent=0,subs="verbatim"]
----
bootJar {
tasks.named('bootJar') {
launchScript()
}
----
Expand Down
Expand Up @@ -71,7 +71,7 @@ You can automatically expand properties from the Gradle project by configuring t

[source,gradle,indent=0,subs="verbatim"]
----
processResources {
tasks.named('processResources') {
expand(project.properties)
}
----
Expand Down

0 comments on commit fd3248b

Please sign in to comment.