Commit f988739
committed
[releng] Fix surefire config
It made reference to an undefined variable `${workspace.root.folder}`.
Correct would have been `${workspace.root.dir}`, defined in the maven
configuration at .mvn/maven.config.
However, even if corrected running JUnit tests in Eclipse doesn't work
(undefined reference to `session.rootDirectory`) since there is no maven
session.
So fix this differently. As for all our Java projects the maven
workspace root is at `${project.basedir}/..` let's use that. That works
in Eclipse and on the command-line.1 parent 794122f commit f988739
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1280 | 1280 | | |
1281 | 1281 | | |
1282 | 1282 | | |
1283 | | - | |
| 1283 | + | |
1284 | 1284 | | |
1285 | 1285 | | |
1286 | 1286 | | |
| |||
0 commit comments