diff --git a/CHANGELOG.md b/CHANGELOG.md index 8305558605..621f99162e 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ ### Fixed +- Fixed caching for `IntelliJPlatformArgumentProvider.coroutinesJavaAgentFile`. - `intellijPlatform.pluginConfiguration.description` appends content instead of replacing it [#1744](../../issues/1744) - The `disabledPlugins.txt` file is not updated when disabling bundled plugins [#1745](../../issues/1745) - Plugin sandbox created by `IntelliJPlatformTestingExtension` is not correct for `localPlugin(org.gradle.api.artifacts.ProjectDependency)` [#1743](../../issues/1743) diff --git a/src/main/kotlin/org/jetbrains/intellij/platform/gradle/argumentProviders/IntelliJPlatformArgumentProvider.kt b/src/main/kotlin/org/jetbrains/intellij/platform/gradle/argumentProviders/IntelliJPlatformArgumentProvider.kt index 8be76bd472..253d0ee722 100644 --- a/src/main/kotlin/org/jetbrains/intellij/platform/gradle/argumentProviders/IntelliJPlatformArgumentProvider.kt +++ b/src/main/kotlin/org/jetbrains/intellij/platform/gradle/argumentProviders/IntelliJPlatformArgumentProvider.kt @@ -33,8 +33,7 @@ class IntelliJPlatformArgumentProvider( @PathSensitive(RELATIVE) val intellijPlatformConfiguration: FileCollection, - @InputFile - @PathSensitive(RELATIVE) + @Classpath @Optional val coroutinesJavaAgentFile: Provider,