我使用以下文档添加了依赖项和插件- https://docs.spring.io/spring-native/docs/current/reference/htmlsingle/
我也尝试过-- mvn clean install .But,我一直收到这个错误-

谢谢你的帮助。
发布于 2021-04-21 15:26:53
您必须添加此存储库。因为此存储库https://repo.spring.io/release中提供了spring-aot-maven-plugin插件
<repositories>
<repository>
<id>snapshots</id>
<name>Local Nexus</name>
<url>https://repo.spring.io/release</url>
</repository>
</repositories>我已经在上面的存储库中尝试过这个插件:
<groupId>org.springframework.experimental</groupId>
<artifactId>spring-aot-maven-plugin</artifactId>
<version>0.9.2</version>它工作得很好..
https://stackoverflow.com/questions/67191032
复制相似问题