I get the following error when I try to build a project that references geotoolkit, using Maven 3.8.1.
Blocked mirror for repositories: [geotoolkit (http://maven.geotoolkit.org/, default, releases+snapshots)]
Since Maven 3.8.1 http repositories are blocked.
Possible solutions:
- Check that Maven pom files not contain http repository http://maven.geotoolkit.org/
- Add a mirror(s) for http://maven.geotoolkit.org/ that allows http url in the Maven settings.xml
- Downgrade Maven to version before 3.8.1 in settings
My pom.xml file contains this:
<repositories>
<repository>
<id>geotoolkit</id>
<name>Geotk Modules</name>
<url>http://maven.geotoolkit.org/</url>
<layout>default</layout>
</repository>
</repositories>
I tried replacing the url with:
None of the URLs listed above worked either.
I get the following error when I try to build a project that references geotoolkit, using Maven 3.8.1.
My pom.xml file contains this:
I tried replacing the url with:
None of the URLs listed above worked either.