I found the issue. I have wrong path in .m2/settings.xml.
I'm using Mac OS.
Wrong:
<localRepository>${user.home}/.m2/repository</localRepository>
Correct:
<localRepository>${HOME}/.m2/repository</localRepository>
I found the issue. I have wrong path in .m2/settings.xml.
I'm using Mac OS.
Wrong:
<localRepository>${user.home}/.m2/repository</localRepository>
Correct:
<localRepository>${HOME}/.m2/repository</localRepository>