BUG! exception in phase 'semantic analysis'

后端 未结 5 652
感情败类
感情败类 2020-12-05 14:37

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

5条回答
  •  醉梦人生
    2020-12-05 15:16

    In my case the reason was IntellijIdea variable generation.

    Example: Idea generated List<@NotNull UUID> locationIds instead of List locationIds

    Groovy compilation failed to process this @NotNull annotation inside generic brackets

提交回复
热议问题