253 EAP Missing

Same topic different issue:

I don’t see an available EAP in here:

I do see the EAP in the Ultimate in here:

https://data.services.jetbrains.com/products?code=DG%2CPS%2CDL%2CMPS%2CMPSIIP%2CRDCPPP%2CWS%2CAC%2CIIC%2CIIE%2CGO%2CCL%2CPCD%2CPCC%2CRD%2CPCE%2CIIU%2CRM%2CPCP&fields=code%2Cname%2Creleases.downloads%2Creleases.version%2Creleases.build%2Creleases.type

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?

I see 253-EAP-SNAPSHOT for com.jetbrains.intellij.idea

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
    }
  }
}
1 Like