Skip to content

Commit

Permalink
build: use RDF4J v5
Browse files Browse the repository at this point in the history
  • Loading branch information
berezovskyi committed Nov 23, 2024
1 parent 3b7805c commit 9864ec6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion trs/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<dependency>
<groupId>org.eclipse.rdf4j</groupId>
<artifactId>rdf4j-repository-sparql</artifactId>
<version>2.5.3</version>
<version>5.1.0</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ static public void processQuery(String query, String serviceUrl) {
static public void processQuery_sesame(String query, String serviceUrl, String user, String pwd) {
SPARQLRepository repo = new SPARQLRepository(serviceUrl);
repo.setUsernameAndPassword(user, pwd);
repo.initialize();
repo.init();
RepositoryConnection rc = repo.getConnection();
processQuery_sesame(query, rc);
}
Expand Down

0 comments on commit 9864ec6

Please sign in to comment.