I’m running IntelliJ 2023.3.4 on Windows. I have imported a Gradle project and I have these lines in my build.gradle file
<code>...
credentials {
≠≠ username = "${my_user}"
password = "${my_pass
...
</code>
<code>...
credentials {
≠≠ username = "${my_user}"
password = "${my_pass
...
</code>
...
credentials {
≠≠ username = "${my_user}"
password = "${my_pass
...
And I have this defined in my ~/.grade/grade.properties (created using vim on GitBash)
<code>my_user=myuser
my_pass=pass
</code>
<code>my_user=myuser
my_pass=pass
</code>
my_user=myuser
my_pass=pass
However,when I start IntelliJ and it attempts to load my project, it gives these errors in the terminal …
<code>Build file 'C:UsersPLi6H227workspacemy-projectbuild.gradle' line: 19
A problem occurred evaluating root project 'my-project'.
> Could not find method ??() for arguments [myuser] on Credentials [username: myuser] of type org.gradle.internal.credentials.DefaultPasswordCredentials_Decorated.
</code>
<code>Build file 'C:UsersPLi6H227workspacemy-projectbuild.gradle' line: 19
A problem occurred evaluating root project 'my-project'.
> Could not find method ??() for arguments [myuser] on Credentials [username: myuser] of type org.gradle.internal.credentials.DefaultPasswordCredentials_Decorated.
</code>
Build file 'C:UsersPLi6H227workspacemy-projectbuild.gradle' line: 19
A problem occurred evaluating root project 'my-project'.
> Could not find method ??() for arguments [myuser] on Credentials [username: myuser] of type org.gradle.internal.credentials.DefaultPasswordCredentials_Decorated.
What does this mean and how can I fix it?