I am trying to install wikidata-query-rdf (https://github.com/wikimedia/wikidata-query-rdf) and there is a failure with Blazegraph :
git clone https://gerrit.wi
Some dependencies can't be found by Maven. You can see that it is looking in a repository where only releases but no SNAPSHOTS are available.
You should add the SNAPSHOT repository to the parent pom.xml
file:
<repositories>
....
<repository>
<id>wmf.snapshots</id>
<url>https://archiva.wikimedia.org/repository/snapshots</url>
</repository>
</repositories>
Or alternatively, change the Blazegraph dependency version property to latest release version:
<properties>
<blazegraph.version>2.1.4</blazegraph.version>
...
</properties>