JetBrains / sbt-idea-plugin

Develop IntelliJ plugins with Scala and SBT
Apache License 2.0
98 stars 28 forks source link

sbt idea tries to download jbr-11_0_10-osx-x64-b1341.2.tar.gz which is not available in https://jetbrains.bintray.com/intellij-jbr/ #94

Closed moglideveloper closed 3 years ago

moglideveloper commented 3 years ago

build.sbt :-

intellijPlugins += "org.intellij.scala:2021.1.7".toPlugin
intellijDownloadSources := true
bundleScalaLibrary in ThisBuild := false

lazy val samplePlugin = project.in(file("."))
  .enablePlugins(SbtIdeaPlugin)

plugins.sbt addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.8.4")

sbt idea tries to download jbr-11_0_10-osx-x64-b1341.2.tar.gz which is not available in bintray

[error] (ThisBuild / updateIntellij) org.jetbrains.sbtidea.download.FileDownloader$DownloadException: Not found (404): https://cache-redirector.jetbrains.com/jetbrains.bintray.com/intellij-jbr/jbr-11_0_10-osx-x64-b1341.2.tar.gz b1341.2 is not available in https://jetbrains.bintray.com/intellij-jbr/

Versions of jbr-11_0_10-osx-x64 available in https://jetbrains.bintray.com/intellij-jbr/ :-

image

moglideveloper commented 3 years ago

After upgrading sbt-idea-plugin to 3.9.3. This issue is not reproduced.