rharter / auto-value-gson

AutoValue Extension to add Gson De/Serializer support
Apache License 2.0
607 stars 103 forks source link

README Error? The Download section refers to a gradle dependency that does not exist #211

Closed dphillipsprosper closed 5 years ago

dphillipsprosper commented 5 years ago

Going through my build.gradle today to update dependencies, and I noticed that you've updated the readme to the following:

annotationProcessor("com.ryanharter.auto.value:auto-value-gson:0.8.0")
implementation("com.ryanharter.auto.value:auto-value-gson-runtime:0.8.0")

When I try to build with these dependency lines, Gradle dies with ERROR: Failed to resolve: com.ryanharter.auto.value:auto-value-gson-runtime:0.8.0

I searched both Maven Central and JCenter and confirmed that the artifact is in neither repo.

I did see that there is an 0.8.0 version of the com.ryanharter.auto.value:auto-value-gson-annotations artifact. Should that be used instead of the runtime dependency?

ZacSweers commented 5 years ago

It's a WIP for the next release, sorry for the confusion. Should be cleared up once it's cut

On Wed, Feb 6, 2019 at 5:41 PM Don Phillips notifications@github.com wrote:

Going through my build.gradle today to update dependencies, and I noticed that you've updated the readme to the following:

annotationProcessor("com.ryanharter.auto.value:auto-value-gson:0.8.0") implementation("com.ryanharter.auto.value:auto-value-gson-runtime:0.8.0")

When I try to build with these dependency lines, Gradle dies with ERROR: Failed to resolve: com.ryanharter.auto.value:auto-value-gson-runtime:0.8.0

I searched both Maven Central https://search.maven.org/search?q=com.ryanharter.auto.value and JCenter https://bintray.com/bintray/jcenter and confirmed that the artifact is in neither repo.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rharter/auto-value-gson/issues/211, or mute the thread https://github.com/notifications/unsubscribe-auth/ABTEvmzhYlo47VC2LPi1grVGQzDSYrRjks5vK4RKgaJpZM4amdER .

dphillipsprosper commented 5 years ago

Cool. I'll keep an eye out. Thanks.