-
Notifications
You must be signed in to change notification settings - Fork 2k
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
2.25 compiler jar missing shaded dependency classes #1639
Comments
<dependency>
<groupId>com.google.dagger</groupId>
<artifactId>dagger-producers</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.dagger</groupId>
<artifactId>dagger-spi</artifactId>
<!-- NOTICE THIS VERSION -->
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.googlejavaformat</groupId>
<artifactId>google-java-format</artifactId>
<version>1.5</version>
</dependency> |
What's wrong with that version? |
Nothing, I was wrong and thought it wasn't properly escaped. I just learnt that it's allowed. |
Also facing the same issue after updating to
Am I missing any configuration or new dependency ? |
I believe this is something we broke by accident with a build refactoring. Sorry for the confusion, I'm not sure how this got past our testing. I hope to have this fixed by tomorrow. |
Yeah, sorry! It looks like we accidentally removed the shaded auto/common sources when packaging the jar for We'll try to push a 2.25.2 release by EOW, but a quick work-around is to just add a dependency on |
This should now be fixed in release 2.25.2 |
After updating to use 2.25 running in a gradle build via kapt I am seeing:
java.lang.NoClassDefFoundError: dagger/shaded/auto/common/BasicAnnotationProcessor
A quick download of the sources jar shows they are missing there as well. (assuming they should have been included)
The text was updated successfully, but these errors were encountered: