You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduced the initializeIntelliJPlugin task for executing plugin initialization actions, like checkPluginVersion
instrumentJar task to produce independent jar file with instrumented classes
instrumentedJar configuration for multi-module projects
Publish plugin marker to the Maven Snapshot Repository
Fixed
Don't enforce the Kotlin version of the project by using compileOnly instead of api when declaring the org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0 dependency #1276
Instrumentation: fixed configuration cache support, dropped the postInstrumentCode and postInstrumentTestCode tasks #1283
Breaking Changes
It is required to use the instrumentedJar configuration when referring submodules in multi-modules project, like dependencies { implementation(project(":submodule", "instrumentedJar")) }
Rename IntelliJInstrumentCodeTask to InstrumentCodeTask