conduktor / azure-kafka-oauthbearer

Kafka `CallbackHandler` implementation to support Azure Managed Identity
Apache License 2.0
2 stars 0 forks source link

SBT doesn't resolve this #6

Closed Andycharalambous closed 3 months ago

Andycharalambous commented 3 months ago

Hi,

I don't see that this is published in mavenrepository - can you please provide information on the resolver setup in SBT to use?

Thanks

qboileau commented 3 months ago

This project is not published on maven central but on github directly, you need to add Conduktor Github maven registry in resolver list like in SBT

resolvers += s"GitHub Conduktor Apache Maven Packages" at s"https://maven.pkg.github.com/conduktor/_/"

in maven

    <repositories>
        <repository>
            <id>github</id>
            <name>GitHub Conduktor Apache Maven Packages</name>
            <url>https://maven.pkg.github.com/conduktor/_/</url>
        </repository>
    </repositories>

Will add them to the README, thanks for noticing this.