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
Related to KTIJ-5659, the 1.4.3 build of kotlinx-coroutines-core does not include Premain-Class in the MANIFEST.MF, nor the AgentPremain.class file. Those do exist in kotlinx-coroutines-core-jvm-1.4.3.jar.
This is causing failures when debugging unit tests in IntelliJ, which attempts to reference -javaagent:.../kotlinx-coroutines-core-1.4.3.jar if you don't include a dependency on kotlinx-coroutines-core-jvm-1.4.3.jar (or if kotlinx-coroutines-core-1.4.3.jar is before kotlinx-coroutines-core-jvm in your effective pom.xml for a maven project).
The text was updated successfully, but these errors were encountered:
…routines-core
* It fixes IDEA issue that was introduced in coroutines 1.4.3 where we switched to Kotlin 1.4.30 and stopped producing root artifact with JVM classes
* It simplifies manual -javaagent specification for end-users who shouldn't even be aware of kotlinx-coroutines-core-jvm.jar
Fixes#2619
…routines-core (Kotlin#2632)
* It fixes IDEA issue that was introduced in coroutines 1.4.3 where we switched to Kotlin 1.4.30 and stopped producing root artifact with JVM classes
* It simplifies manual -javaagent specification for end-users who shouldn't even be aware of kotlinx-coroutines-core-jvm.jar
FixesKotlin#2619
Related to KTIJ-5659, the 1.4.3 build of
kotlinx-coroutines-core
does not includePremain-Class
in theMANIFEST.MF
, nor theAgentPremain.class
file. Those do exist inkotlinx-coroutines-core-jvm-1.4.3.jar
.This is causing failures when debugging unit tests in IntelliJ, which attempts to reference
-javaagent:.../kotlinx-coroutines-core-1.4.3.jar
if you don't include a dependency onkotlinx-coroutines-core-jvm-1.4.3.jar
(or ifkotlinx-coroutines-core-1.4.3.jar
is beforekotlinx-coroutines-core-jvm
in your effectivepom.xml
for a maven project).The text was updated successfully, but these errors were encountered: