I have a 1.1.7 spring-boot app using Gradle 1.10 & jdk1.8. I use Groovy/Spock for testing It has two dependencies - jars build with Apache Maven 3.1.1 and jdk 1.8. I b
In my case the reason was IntellijIdea variable generation.
Example: Idea generated List<@NotNull UUID> locationIds instead of List locationIds
List<@NotNull UUID> locationIds
List locationIds
Groovy compilation failed to process this @NotNull annotation inside generic brackets
@NotNull