Skip to content

Commit 10d2dc5

Browse files
committed
Update some tools.
Update the following tools to their latest available versions: * Scala-CLI, from 1.5.4 to 1.8.0; * Soufflé, from 2.4.1 to 2.5; * Dicer, from 0.1.0 to 0.2.0; * SSSOM-Java (ROBOT plugin and CLI tool), from 1.4.0 to 1.5.1. The Dicer upgrade requires updating the Makefile template, as the `dicer` tool now uses subcommands (call to `dicer` must be replaced by `dicer policy`).
1 parent 36dd015 commit 10d2dc5

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENV ODK_VERSION=$ODK_VERSION
1414
ENV JENA_VERSION=4.9.0
1515
ENV KGCL_JAVA_VERSION=0.5.1
1616
ENV AMMONITE_VERSION=2.5.9
17-
ENV SCALA_CLI_VERSION=1.5.4
17+
ENV SCALA_CLI_VERSION=1.8.0
1818
ENV OWLTOOLS_VERSION=2020-04-06
1919

2020
# Avoid repeated downloads of script dependencies by mounting the local coursier cache:

docker/builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WORKDIR /build
88

99
# Software versions
1010
ENV RDFTAB_VERSION=0.1.1
11-
ENV SOUFFLE_VERSION=2.4.1
11+
ENV SOUFFLE_VERSION=2.5
1212
ENV FASTOBO_VALIDATOR_VERSION=0.4.6
1313

1414
# Everything that we want to get into one of the final ODK images

docker/odklite/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ LABEL maintainer="obo-tools@googlegroups.com"
44
ENV ROBOT_VERSION=1.9.7
55
ENV DOSDP_VERSION=0.19.3
66
ENV RELATION_GRAPH=2.3.2
7-
ENV DICER_VERSION=0.1.0
7+
ENV DICER_VERSION=0.2.0
88
ENV ODK_ROBOT_PLUGIN_VERSION=0.2.0
9-
ENV SSSOM_JAVA_VERSION=1.4.0
9+
ENV SSSOM_JAVA_VERSION=1.5.1
1010

1111
WORKDIR /tools
1212
ENV JAVA_HOME="/usr"

template/src/ontology/Makefile.jinja2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1532,7 +1532,7 @@ normalize_src: $(SRC)
15321532

15331533
.PHONY: validate_idranges
15341534
validate_idranges:
1535-
if [ -f {{ project.id }}-idranges.owl ]; then dicer-cli {{ project.id }}-idranges.owl ; fi
1535+
if [ -f {{ project.id }}-idranges.owl ]; then dicer-cli policy {{ project.id }}-idranges.owl ; fi
15361536

15371537
# Deprecated: Use 'sh run.sh odk.py update' without using the Makefile.
15381538
.PHONY: update_repo

0 commit comments

Comments
 (0)