Jakub Chrzanowski

Results 264 comments of Jakub Chrzanowski

The Kotlin Script I've created for purging IntelliJ Platform extracted archives from the Gradle Transformers Cache: https://gist.github.com/hsz/0fc45e1a6fc9ef73d4e4f5960058bded

> Hello, Jonathan! I am very well aware of this problem. Let me explain to you the state of the current implementation: > > Adding the IntelliJ Platform dependency to...

Unfortunately, it is impossible to extract the resolved IntelliJ Platform artifact (no matter if this is installer or a ZIP archive from the IntelliJ Maven repository) to a custom directory...

I have no impact on what is taken as an input: https://github.com/gradle/gradle/blob/7457e89eed50aa0b9dbab3a521141f6b8ce4a073/platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java#L683 Gradle considers the whole implementation classpath of the build script. The idea is to limit the input classpath...

Thank you for your input, @JojOatXGME! 1. Unfortunately, IntelliJ Platform dependencies have no `module-info` at all. I could try creating something on-the-fly, but... 2. I'm not sure if we're on...

@JojOatXGME There's no input on that from the Gradle side. I'll start working on this story in September. All the progress will be communicated in this thread.

This was redesigned a bit since `2.0.0-beta1`. Could you please verify if this is still the issue in `2.0.0-beta9`?

The issue is obsolete now as we started relaying on Gradle cache for storing IDEs resolved from JetBrains CDN for plugin verification. If you expect to have a fixed list...

Fixed in 2.0: https://github.com/JetBrains/intellij-platform-gradle-plugin/commit/f47cd59f279367823f56d44252688d65dcba9f03 Backported to 1.x: https://github.com/JetBrains/intellij-platform-gradle-plugin/commit/4b8ba3f5763670ddb1fae2c1ca61efe4aab56223

The 2.0 properly addresses missing Java Compiler dependency through the `instrumentationTools()` helper mentioned by @halirutan : https://github.com/JetBrains/intellij-platform-gradle-plugin/issues/1255#issuecomment-2041444450