Hi,
https://github.com/openjdk/jfx/pull/1009
For this PR, Intellij Idea is not importing the systemTests dependencies
correctly.
I noticed that it's this part:
dependencies {
testImplementation project(":graphics").sourceSets.test.output
testImplementation project(":base").sourceSets.test.output
testImplementation project(":controls").sourceSets.test.output
testImplementation project(":swing").sourceSets.test.output
}
It works if I remove "sourceSets.test.output".
I don't have much experience with gradle.
How could I rewrite this that it builds correctly and works with the
Intellij Idea gradle import?
Thanks.