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
Identify the exact issues with platformVersion when updating IntelliJ from version 2024.1.7 to 2024.2. We found that unit tests fail in IntelliJ version 2024.2 when platformVersion is set to 2024.2 #1048. Investigate other potential issues and check if any deprecation fixes are required mainly to resolve unit test failure. If no solution is found, explore the possibility of running the unit tests on version 2024.1.7 while using platformVersion 2024.2 for building the project and generating the ZIP file.
The text was updated successfully, but these errors were encountered:
I tried updating the version from 2024.1.7 to 2024.2 and built the project. However, I encountered same unit test failure as mentioned in the issue #1048. The failure pointed to a specific line of code located in the BaseJakartaTest class, which extends the MavenImportingTestCase class. The line invokes the method importProjectsAsync(pomFiles.toArray(VirtualFile[]::new), continuation), which is defined in the MavenImportingTestCase class.
When I reviewed the code for importProjectsAsync(), I noticed some changes in the method. I am attaching the code differences between versions 2024.1.7 and 2024.2
There are two additional parameters present in the code built using version 2024.2
Identify the exact issues with
platformVersion
when updating IntelliJ from version2024.1.7
to2024.2
. We found that unit tests fail in IntelliJ version 2024.2 when platformVersion is set to 2024.2 #1048. Investigate other potential issues and check if any deprecation fixes are required mainly to resolve unit test failure. If no solution is found, explore the possibility of running the unit tests on version 2024.1.7 while usingplatformVersion
2024.2 for building the project and generating the ZIP file.The text was updated successfully, but these errors were encountered: