We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello!
I'm using plugin to make a bundle upload with new Sonatype Central API.
The project is build with Java 8 and then sonatypeCentralUpload command throws following exception:
sonatypeCentralUpload
2024-08-12 14:40:01.733Z error [Sonatype] [GENERIC_ERROR] java.nio.file.Path.of(Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path; - (Sonatype.scala:494)
I suppose that origin of this error is here:
sbt-sonatype/src/main/scala/xerial/sbt/sonatype/SonatypeCentralService.scala
Line 19 in c0c099b
In build.sbt the target JVM is set to 8, but method of in java.nio.file.Path interface is only available since Java 11.
build.sbt
of
The text was updated successfully, but these errors were encountered:
Here's my PR for this - #508
Sorry, something went wrong.
7824290
Thanks. Released https://github.com/xerial/sbt-sonatype/releases/tag/v3.11.3 with this fix
Successfully merging a pull request may close this issue.
Hello!
I'm using plugin to make a bundle upload with new Sonatype Central API.
The project is build with Java 8 and then
sonatypeCentralUpload
command throws following exception:I suppose that origin of this error is here:
sbt-sonatype/src/main/scala/xerial/sbt/sonatype/SonatypeCentralService.scala
Line 19 in c0c099b
In
build.sbt
the target JVM is set to 8, but methodof
in java.nio.file.Path interface is only available since Java 11.The text was updated successfully, but these errors were encountered: