From 5fe8011e50deabce415e4106c5917822fb671e31 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 12 Feb 2024 13:13:06 +0000 Subject: [PATCH 1/2] Update SSSOM-Java. This commit updates the SSSOM-Java ROBOT plugin and CLI tool to version 0.7.5, which adds support for the latest version of the extension model in SSSOM. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cc3c1cc9..483ae545 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ ENV ODK_VERSION $ODK_VERSION # Software versions ENV JENA_VERSION=4.9.0 -ENV SSSOM_JAVA_VERSION=0.7.3 +ENV SSSOM_JAVA_VERSION=0.7.5 # Avoid repeated downloads of script dependencies by mounting the local coursier cache: # docker run -v $HOME/.coursier/cache/v1:/tools/.coursier-cache ... From 3ff2eeebac98b225597a8f6ecfff70854e09ba46 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Thu, 22 Feb 2024 11:24:28 +0000 Subject: [PATCH 2/2] Add KGCL Robot plugin. This makes the ROBOT KGCL plugin available in /tools/robot-plugins/kgcl.jar, similarly to the SSSOM plugin. --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 483ae545..d8a9492c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,7 @@ ENV ODK_VERSION $ODK_VERSION # Software versions ENV JENA_VERSION=4.9.0 +ENV KGCL_JAVA_VERSION=0.3.2 ENV SSSOM_JAVA_VERSION=0.7.5 # Avoid repeated downloads of script dependencies by mounting the local coursier cache: @@ -108,8 +109,9 @@ RUN wget -nv https://github.com/balhoff/relation-graph/releases/download/v$RG/re && mv relation-graph-cli-$RG /tools/relation-graph \ && chmod +x /tools/relation-graph -# Install SSSOM-Java +# Install ROBOT plugins RUN wget -nv -O /tools/sssom-cli https://github.com/gouttegd/sssom-java/releases/download/sssom-java-$SSSOM_JAVA_VERSION/sssom-cli && \ chmod +x /tools/sssom-cli && \ mkdir -p /tools/robot-plugins && \ - wget -nv -O /tools/robot-plugins/sssom.jar https://github.com/gouttegd/sssom-java/releases/download/sssom-java-$SSSOM_JAVA_VERSION/sssom-robot-plugin-$SSSOM_JAVA_VERSION.jar + wget -nv -O /tools/robot-plugins/sssom.jar https://github.com/gouttegd/sssom-java/releases/download/sssom-java-$SSSOM_JAVA_VERSION/sssom-robot-plugin-$SSSOM_JAVA_VERSION.jar && \ + wget -nv -O /tools/robot-plugins/kgcl.jar https://github.com/gouttegd/kgcl-java/releases/download/kgcl-java-$KGCL_JAVA_VERSION/kgcl-robot-plugin-$KGCL_JAVA_VERSION.jar