File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change
1
+ import org.gradle.api.internal.provider.PropertyFactory
1
2
import org.gradle.jvm.toolchain.internal.SpecificInstallationToolchainSpec
2
3
3
4
apply plugin : ' java-library'
@@ -164,7 +165,7 @@ project.afterEvaluate {
164
165
def testJvmHomePath = getJavaHomePath(testJvmHome)
165
166
// Only change test JVM if it's not the one we are running the gradle build with
166
167
if (currentJavaHomePath != testJvmHomePath) {
167
- def jvmSpec = new SpecificInstallationToolchainSpec (project. services. get(org.gradle.api.internal.provider. PropertyFactory ), file(testJvmHomePath))
168
+ def jvmSpec = new SpecificInstallationToolchainSpec (project. services. get(PropertyFactory ), file(testJvmHomePath))
168
169
// The provider always says that a value is present so we need to wrap it for proper error messages
169
170
Provider<JavaLauncher > launcher = providers. provider {
170
171
try {
You can’t perform that action at this time.
0 commit comments