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
This is also breaking incremental annotation processing on AutoFactory 1.0-beta7
w: [kapt] Incremental annotation processing requested, but support is disabled because the following processors are not incremental:
com.google.auto.value.extension.memoized.MemoizedValidator (NON_INCREMENTAL),
com.google.auto.value.processor.AutoAnnotationProcessor (NON_INCREMENTAL),
com.google.auto.value.processor.AutoValueBuilderProcessor (NON_INCREMENTAL),
com.google.auto.value.processor.AutoValueProcessor (NON_INCREMENTAL).
…sorPaths>`.
The annotation dependency for `@AutoService` is now a regular compile-scoped dependency. This prevents errors from overeager consumers that can't deal with missing annotation class files.
This change is equivalent to the one we made for AutoValue in #1046.
Fixes#744.
RELNOTES=AutoService dependency is now a regular compile-scoped dependency.
PiperOrigin-RevId: 367219456
AutoFactory 1.0-beta6 has a compile-scoped dependency on AutoValue 1.5.3:
auto/factory/pom.xml
Lines 74 to 78 in 2a52c55
which adds the following annotation processors to classpath:
This is problematic for two reasons:
cc @ronshapiro
The text was updated successfully, but these errors were encountered: