Commit 1a02a0d
authored
build: ensure :processResources runs before :compileJava (#1379)
### Motivation
There are some build steps that require resources to be present at
compile time. Due to some Gradle magic, the `processResources` task is
not always executed before `compileJava`, which leads to failures when
f. ex. generating plugin manifests with our annotation processing.
### Modification
Require the `processResources` task to run before `compileJava` by
adding a dependency.
### Result
`processResources` now runs before `compileJava` again, fixing all
issues with plugin manifest generation during compile.1 parent 7f8f63e commit 1a02a0d
1 file changed
Lines changed: 4 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
148 | 148 | | |
149 | 149 | | |
150 | 150 | | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
151 | 155 | | |
152 | 156 | | |
153 | 157 | | |
| |||
0 commit comments