Skip to content

Commit c5562ab

Browse files
committed
Resolve 262 EAP from snapshots, not installer
EAP-SNAPSHOT builds have no download.jetbrains.com installer; they exist only as snapshot maven artifacts. Set useInstaller=false (via the dependency configuration block) so the platform dependency and the verifier IDEs resolve from the repository.
1 parent 48a9691 commit c5562ab

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ dependencies {
6767
testImplementation(libs.remoteRobot)
6868
testImplementation(libs.remoteRobotFixtures)
6969
intellijPlatform {
70-
pycharm(platformVersion)
70+
// platformVersion is a 2026.2 EAP build, available only as a snapshot maven artifact
71+
// (no installer at download.jetbrains.com), so resolve it from the repository.
72+
pycharm(platformVersion) { useInstaller = false }
7173
bundledPlugin("PythonCore")
7274
pluginVerifier()
7375
zipSigner()
@@ -161,7 +163,7 @@ intellijPlatform {
161163
IntelliJPlatformType.PyCharmProfessional,
162164
)
163165
}
164-
ideTypes.forEach { create(it, platformVersion) }
166+
ideTypes.forEach { create(it, platformVersion) { useInstaller = false } }
165167
}
166168
}
167169
}

0 commit comments

Comments
 (0)