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
dagger-compiler bundles lots of libraries, not as maven dependencies. This causes problems when another annotation processing library uses a newer version of libraries that are used in dagger-compiler.
For example, there is an annotation processor that uses JavaPoet 1.6 feature (e.g. CodeBlock.of()), does not work with Dagger 2.2 because JavaPoet 1.5.1, bundled in dagger-compiler, is loaded.
I think dagger-compiler should not bundle any libraries because users can't control their versions.
Environment
JDK 1.8.0_77
Dagger 2.2
The text was updated successfully, but these errors were encountered:
dagger-compiler bundles lots of libraries, not as maven dependencies. This causes problems when another annotation processing library uses a newer version of libraries that are used in dagger-compiler.
For example, there is an annotation processor that uses JavaPoet 1.6 feature (e.g.
CodeBlock.of()
), does not work with Dagger 2.2 because JavaPoet 1.5.1, bundled in dagger-compiler, is loaded.I think dagger-compiler should not bundle any libraries because users can't control their versions.
Environment
The text was updated successfully, but these errors were encountered: