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
12import org.gradle.jvm.toolchain.internal.SpecificInstallationToolchainSpec
23
34apply plugin : ' java-library'
@@ -164,7 +165,7 @@ project.afterEvaluate {
164165 def testJvmHomePath = getJavaHomePath(testJvmHome)
165166 // Only change test JVM if it's not the one we are running the gradle build with
166167 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))
168169 // The provider always says that a value is present so we need to wrap it for proper error messages
169170 Provider<JavaLauncher > launcher = providers. provider {
170171 try {
You can’t perform that action at this time.
0 commit comments