After including:
<dependency>
<groupid>org.apache.solr</groupid>
<artifactid>solr-core</artifactid>
<version>8.0.0</version>
</dependency>
and running mvn clean package i have this error:
Failed to collect dependencies at org.apache.solr:solr-core:jar:8.0.0 -> org.restlet.jee:org.restlet:jar:2.3.0
In mvnrepository org.restlet/2.3.0 it says: Note: this artifact is located at Spring Plugins repository (https://repo.spring.io/plug...
According to this: spring notice of permission I tried either:
<repository>
<id>spring-snapshot</id>
<name>Spring Snapshot Repository</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
or:
<repository>
<id>spring-milestone</id>
<name>Spring Milestone Repository</name>
<url>https://repo.spring.io/milestone</url>
</repository>
and none works.
I even did mvn -U clean package to force check the update on the remote repositories but not working.