Closed dwightmulcahy closed 7 years ago
Hi Dwight,
I see that you are specifying javax.annotation.NotNull
, whereas I believe it's named javax.annotation.Nonnull
. Could that be the problem? Alternatively, there is javax.validation.constraints.NotNull
.
Ugh... that was it. Thanks...
I have a large project that has a mix of
org.jetbrains.annotations
andjavax.annotation
for notNull and nullable (don't ask).I can't seem to get the
javax.annotation
annotations to instrument just theorg.jetbrains.annotations
.with just the
org.jetbrains.annotations
I get the files that have it instrumented...with just the
javax.annotation
get none of the files instrumented... (there are 50+)...I've set up my
pom.xml
file with the default but added the configuration section as such:I've done
<implicit>true</implicit>
but that covers everything (200+ files) and is unrealistic for me at this point.I'm I doing something wrong or is this scenario unsupported at this point?