sbt / sbt-native-packager

sbt Native Packager
https://sbt-native-packager.readthedocs.io/en/stable/
BSD 2-Clause "Simplified" License
1.59k stars 437 forks source link

Packages are not available #1541

Closed KannarFr closed 1 year ago

KannarFr commented 1 year ago

Looks like the repository which stores the packages is not available. Same issue on sbt/sbt-revolver & sbt-javaagent.

https://github.com/spray/sbt-revolver/issues/112

jeremycarroll commented 1 year ago

Specifically for me the files link from https://index.scala-lang.org/sbt/sbt-native-packager/artifacts/sbt-native-packager/1.3.4 which I note has the old Group ID:com.typesafe.sbt. The same is true for 1.8.0, whereas the 1.9.x versions with Group ID:com.github.sbt are available

muuki88 commented 1 year ago

I guess they all went away with the sunset of bintray. The old packages haven't been released as I don't have the time to do this. I recommend upgrading to 1.9.x 😊

muuki88 commented 1 year ago

Related https://github.com/sbt/sbt/issues/7202

bigpick commented 1 year ago

I guess they all went away with the sunset of bintray. The old packages haven't been released as I don't have the time to do this. I recommend upgrading to 1.9.x 😊

https://scala.jfrog.io/ui/native/sbt-plugin-releases/com.typesafe.sbt/sbt-native-packager/scala_2.12/sbt_1.0/ only has up to 1.8.1 though?

edit: from a comment in that thread, specifically for sbt-native-packager, they said to use https://repo1.maven.org/maven2/com/github/sbt/sbt-native-packager_2.12_1.0/?

... which does look like it has https://repo1.maven.org/maven2/com/github/sbt/sbt-native-packager_2.12_1.0/1.9.16/

...... which actually works when you update your plugins.sbt file to use the proper syntax, which is clearly stated in the README (doh 🙃)

addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.16")