-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 0.1.5 is broken due to incorrect auto-value configuration #147
Comments
Confirmed that the latest
It is because I've replaced the build tool from Maven to Gradle, and in its procedure I've fixed it unintentionally. I will ship 0.1.6 later. Thanks for your notice! |
🎉 This issue has been resolved in version 0.1.6 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
🎉 This issue has been resolved in version 0.1.6 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
v0.1.6 is now ready on Maven Central. Thanks again for your report @remal! |
I'm trying to set up errorprone-slf4j v0.1.5 and ErrorProne doesn't discover its checks.
As I can see in the commit c4b9ea2 this was added to pom.xml:
errorprone-slf4j/pom.xml
Lines 76 to 82 in c4b9ea2
By adding this,
com.google.auto.service:auto-service
annotation processor became disabled.As you can see, in the created JAR file, there is no
META-INF/services/
file. That's why ErrorProne can find checks of errorprone-slf4j.The issue can be fixed, by adding this dependency into
annotationProcessorPaths
:errorprone-slf4j/pom.xml
Lines 111 to 113 in c4b9ea2
The text was updated successfully, but these errors were encountered: