Rescan plugin advertiser suggestions in background after Gradle import (FL-10308)

GitOrigin-RevId: 9d491fab495b689aafc9bc6a0111b28e6838319f
This commit is contained in:
Dmitry Jemerov
2021-12-09 18:34:04 +00:00
committed by intellij-monorepo-bot
parent 912192ffb7
commit f5ef36ef15
@@ -1,7 +1,8 @@
// Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package org.jetbrains.plugins.gradle.service.project
import com.intellij.ide.plugins.DependencyCollector
import com.intellij.openapi.application.ApplicationManager
import com.intellij.openapi.externalSystem.model.ProjectKeys
import com.intellij.openapi.externalSystem.model.task.ExternalSystemTaskId
import com.intellij.openapi.externalSystem.model.task.ExternalSystemTaskNotificationListenerAdapter
@@ -35,7 +36,9 @@ class GradleDependencyUpdater : ExternalSystemTaskNotificationListenerAdapter()
override fun onEnd(id: ExternalSystemTaskId) {
if (id.projectSystemId == GradleConstants.SYSTEM_ID && id.type == ExternalSystemTaskType.RESOLVE_PROJECT) {
id.findProject()?.let {
PluginAdvertiserService.instance.rescanDependencies(it)
ApplicationManager.getApplication().executeOnPooledThread {
PluginAdvertiserService.instance.rescanDependencies(it)
}
}
}
}