From 78514dd5ce43fbdb8e4e22261730f90b1b91be07 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Thu, 12 Oct 2023 10:37:43 +0200 Subject: [PATCH] Component build fix (#316) * Update pom.xml Added KG2KG and DateOfDeath component as modules * Update QanaryServiceQueryBuilderDateOfDeathDBpediaControllerTest.java Added missing method for used abstract class * Update pom.xml Incremented version v0.1.0 -> v0.1.1 --- pom.xml | 2 ++ qanary-component-QB-DateOfDeathDBpedia/pom.xml | 2 +- ...erviceQueryBuilderDateOfDeathDBpediaControllerTest.java | 7 ++++++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e3dd7bb28..7e14136d3 100644 --- a/pom.xml +++ b/pom.xml @@ -78,6 +78,8 @@ qanary-component-QB-RuBQWrapper qanary-component-QB-TeBaQaWrapper qanary-component-CopyValuesOfPriorGraph + qanary-component-KG2KG-TranslateAnnotationsOfInstance + qanary-component-QB-DateOfDeathDBpedia diff --git a/qanary-component-QB-DateOfDeathDBpedia/pom.xml b/qanary-component-QB-DateOfDeathDBpedia/pom.xml index 586c6b58f..93892d438 100644 --- a/qanary-component-QB-DateOfDeathDBpedia/pom.xml +++ b/qanary-component-QB-DateOfDeathDBpedia/pom.xml @@ -5,7 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QB-DateOfDeathDBpedia - 0.1.0 + 0.1.1 org.springframework.boot spring-boot-starter-parent diff --git a/qanary-component-QB-DateOfDeathDBpedia/src/test/java/eu/wdaqua/qanary/component/mypackage/QanaryServiceQueryBuilderDateOfDeathDBpediaControllerTest.java b/qanary-component-QB-DateOfDeathDBpedia/src/test/java/eu/wdaqua/qanary/component/mypackage/QanaryServiceQueryBuilderDateOfDeathDBpediaControllerTest.java index bf1dfdfb7..3ea5f4544 100644 --- a/qanary-component-QB-DateOfDeathDBpedia/src/test/java/eu/wdaqua/qanary/component/mypackage/QanaryServiceQueryBuilderDateOfDeathDBpediaControllerTest.java +++ b/qanary-component-QB-DateOfDeathDBpedia/src/test/java/eu/wdaqua/qanary/component/mypackage/QanaryServiceQueryBuilderDateOfDeathDBpediaControllerTest.java @@ -99,6 +99,11 @@ public QuerySolution next() { return querySolutionMaps.get(rowIndex); } + @Override + public void forEachRemaining(Consumer consumer) { + + } + @Override public QuerySolution nextSolution() { return null; @@ -296,4 +301,4 @@ void getBindingForSparqlQueryWithGivenQanaryQuestion() throws Exception { } } -} \ No newline at end of file +}