You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I compile I get this error unauthorized: https://maven.pkg.github.com/infinyon/fluvio-client-java/com.infinyon/fluvio-16/0.12.11/ivys/ivy.xml (GitHub Package Registry)
When I navigate to https://maven.pkg.github.com/infinyon/fluvio-client-java/com.infinyon/fluvio-16/0.12.11/ivys/ivy.xml on my browser. It asks me to enter username and token. After entering it displays this message maven package "com.infinyon.fluvio-16.0.12.11" does not exist under owner "infinyon"
Expected behavior
Should allow me to download the client because my auth is correct.
Describe the setup
Are you using a local Fluvio install? Minikube? Fluvio Cloud? - yes
What version of Fluvio are you using? fluvio version
How to reproduce it (as minimally and precisely as possible)
Steps to reproduce the behavior:
Run the commands
sbt new scala/scala3.g8
##Give a name to project, say fluvio-test
cd fluvio-test
I was able to make this work by using this sbt plugin. Adding the snippet for someone that is stuck like me and would want to use the plugin instead. Add this to your build.sbt file
ThisBuild / resolvers += Resolver.githubPackages("infinyon")
ThisBuild / githubTokenSource := TokenSource.Environment("GITHUB_TOKEN") // Make sure you set the environment variable `GITHUB_TOKEN` before starting sbt
What happened
I use SBT and I am trying to download the fluvio java client. This is in my build.sbt file
When I compile I get this error
unauthorized: https://maven.pkg.github.com/infinyon/fluvio-client-java/com.infinyon/fluvio-16/0.12.11/ivys/ivy.xml (GitHub Package Registry)
When I navigate to
https://maven.pkg.github.com/infinyon/fluvio-client-java/com.infinyon/fluvio-16/0.12.11/ivys/ivy.xml
on my browser. It asks me to enter username and token. After entering it displays this messagemaven package "com.infinyon.fluvio-16.0.12.11" does not exist under owner "infinyon"
Expected behavior
Should allow me to download the client because my auth is correct.
Describe the setup
fluvio version
How to reproduce it (as minimally and precisely as possible)
Steps to reproduce the behavior:
build.sbt
and paste the followingsbt compile
in the root folder of the project.Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: