Failed to install wikidata-query-rdf / Blazegraph

后端 未结 1 367
执笔经年
执笔经年 2021-01-22 05:53

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         


        
相关标签:
1条回答
  • 2021-01-22 05:59

    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>
    
    0 讨论(0)
提交回复
热议问题