[build scripts] the Laravel plugin is bundled in PhpStorm

IJI-3040 WI-82336

GitOrigin-RevId: 07b8c2bda27057168ed115d38afab9a6888f02d6
This commit is contained in:
Dmitriy.Panov
2025-10-17 18:08:53 +00:00
committed by intellij-monorepo-bot
parent e939868800
commit 6e44d31480
2 changed files with 2 additions and 2 deletions
@@ -338,7 +338,7 @@ abstract class ProductProperties {
* Paths to externally built plugins to be included in the IDE.
* They will be copied into the build, as well as included in the IDE classpath when launching it to build search index, .jar order, etc.
*/
open fun getAdditionalPluginPaths(context: BuildContext): List<Path> = emptyList()
open suspend fun getAdditionalPluginPaths(context: BuildContext): List<Path> = emptyList()
/**
* Override this function to provide additional JVM command line arguments which will be added to launchers along with
@@ -100,7 +100,7 @@ suspend fun runApplicationStarter(
}
}
private fun prepareFlatClasspath(classpath: Collection<String>, tempDir: Path, context: BuildContext): LinkedHashSet<String> {
private suspend fun prepareFlatClasspath(classpath: Collection<String>, tempDir: Path, context: BuildContext): LinkedHashSet<String> {
val effectiveIdeClasspath = LinkedHashSet(classpath)
val additionalPluginPaths = context.productProperties.getAdditionalPluginPaths(context)