Issue
I added the dependency and plugins using this documentation- https://docs.spring.io/spring-native/docs/current/reference/htmlsingle/
I also tried-
mvn clean install
.But I keep getting this error-
Thanks for the help.
Solution
You have to add this repository . Because spring-aot-maven-plugin
plugin available in this repository https://repo.spring.io/release
<repositories>
<repository>
<id>snapshots</id>
<name>Local Nexus</name>
<url>https://repo.spring.io/release</url>
</repository>
</repositories>
i have tried this plugin with above repository :
<groupId>org.springframework.experimental</groupId>
<artifactId>spring-aot-maven-plugin</artifactId>
<version>0.9.2</version>
and it is working fine..
Answered By - hdha
Answer Checked By - Terry (JavaFixing Volunteer)