A standalone packaging of the annotations from Google's AutoValue library.
When using AutoValue with Gradle it is highly inconvenient to specify the dependency both as
apt
and provided
. Doing so leaks all of AutoValue's annotation processor code and its
shaded dependencies into your classpath. This project allows you to only depend on the annotations
as provided
and specify the processor only as an apt
dependency.
With any luck, AutoValue issue #268 will be implemented sometime in the future obviating the need for this repacking.
apt 'com.google.auto.value:auto-value:1.2'
provided 'com.jakewharton.auto.value:auto-value-annotations:1.2-update1'
This project contains no code. See AutoValue's change log instead.
This project contains no code. See AutoValue's license instead.