I used this explanation how to publish and fetch SBT libraries from CodeArtifacts:
Publish artifact to AWS CodeArtifact with sbt
my issue is that one of the things I want to publish is not a library, its a plugin, so I used the same explanation, except that I have all the plugin setup (I used frog before and it was working fine, just changed to publish to CodeArtifacts instead based on this explanation)
the publish went fine, I went and took this line:
cause that's what I have there and inserted inside the plugin code:
addSbtPlugin("com.mycompany" % "sbt-plugin_2.12_1.0" % "0.0.41")
and when I tried to fetch I get "not found".
am I doing something wrong?