can not import using maven jar in IDEA
Comment From: wdkang123
try to add:
<dependencies>
...
</dependencies>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
<builld>
...
</build>
Comment From: tzolov
@zrmzack, What do you want to do? Mind that 0.7.1-SNAPSHOT is very old and many breaking changes have happened since. If you are starting a new project you should use the latest 0.8.1-SNAPSHOT or at least the latest milestone release 0.8.0. Also check the Add Milestone and Snapshot Repositories to configure your repositories.
Comment From: tzolov
follow the suggestions about and the reference documentation. If you find any problems please reopen.