Home > Back-end >  'com.gorylenko.GenerateGitPropertiesTask' property 'gitProperties' is missing an
'com.gorylenko.GenerateGitPropertiesTask' property 'gitProperties' is missing an

Time:08-31

I am facing below error. I have no idea which plugin is causing this. I am using Java 11 and the Gradle 7.4.1 wrapper

Some problems were found with the configuration of task ':myservice-server:generateGitProperties' (type 'GenerateGitPropertiesTask').

  • In plugin 'com.gorylenko.gradle-git-properties' type 'com.gorylenko.GenerateGitPropertiesTask' property 'gitProperties' is missing an input or output annotation.

Any guidance on how to overcome this error.

Thanks in advance.

CodePudding user response:

Check if this is related to issue 173 (Support Gradle 7):

2.2.4 seems to be jdk 16 related. When using jdk 15 it works.

v2.3.1 has been published (and seems to be working).

So check which version of gradle-git-properties you are using.

  • Related