Ensure that multiplatform Gradle task runner runs first

In order to have effect, the runner needs to be registered before the
main Gradle runner, which also has order="first" in plugin.xml.
This commit is contained in:
Dmitry Jemerov
2018-03-27 18:33:31 +02:00
parent 8f19e95bd0
commit 6a619d0aa5
+1 -1
View File
@@ -59,7 +59,7 @@
<runConfigurationProducer implementation="org.jetbrains.kotlin.idea.run.KotlinTestClassGradleConfigurationProducer"/>
<runConfigurationProducer implementation="org.jetbrains.kotlin.idea.run.KotlinTestMethodGradleConfigurationProducer"/>
<projectTaskRunner implementation="org.jetbrains.kotlin.idea.run.MultiplatformGradleProjectTaskRunner" order="first"/>
<projectTaskRunner implementation="org.jetbrains.kotlin.idea.run.MultiplatformGradleProjectTaskRunner" order="first,before gradle"/>
<orderEnumerationHandlerFactory implementation="org.jetbrains.kotlin.idea.run.MultiplatformGradleOrderEnumeratorHandler$FactoryImpl" order="first"/>
</extensions>