I tried to run mvn clean insatll and I got any error
plugin:jar:1.0.0 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced – The issue is with the pom.xml
<plugin> <groupId>myGroupId</groupId> <artifactId>my-artifactId</artifactId> <version>$1.0.0</version> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>mygoal</goal> </goals> </execution> </executions> </plugin> when I removed this plugin and added only dependency for this artifactId it worked. When I tried to add also the dependencies and the plugin sections I got the same error
My settigns.xml
<interactiveMode>false</interactiveMode> <localRepository>/../.../</localRepository> <profiles> <profile> <repositories> <repositorty> <id>..</id> <url>..</url> </repositorty> </profile> </profiles> <activeProfiles> .... </activeProfiles> Could you help me why I got this error ?