Same topic different issue:
I don’t see an available EAP in here:
I do see the EAP in the Ultimate in here:
but it is not clear what changes need to be done in order to target it.
Can you please help with some details and examples?
Same topic different issue:
I don’t see an available EAP in here:
I do see the EAP in the Ultimate in here:
but it is not clear what changes need to be done in order to target it.
Can you please help with some details and examples?
Yes it wasn’t there when I reported the issue, thanks
@yuriy.artamonov what is the way to set dependency on 253-EAP-SNAPSHOT? I tried next:
intellijPlatform {
create("IU", "253-EAP-SNAPSHOT")
}
but that doesn’t work:
org.gradle.api.GradleException: No IntelliJ Platform dependency found.
PS using id("org.jetbrains.intellij.platform") version "2.6.0"
PPS create("IU", "253.25908.13") works, but would be nice to not hardcode specific build and use latest snapshot…
The “plain” create("IU", "253-EAP-SNAPSHOT") requests installer artifacts, which are hosted in JetBrains IDEs CDN. Snapshots are available in the IJ Maven Repositories, so you have to opt-out from installer with:
dependencies {
intellijPlatform {
create("IU", "253-EAP-SNAPSHOT") {
useInstaller = false
}
}
}