From 599babbb24c3dee61a593c5fbd08efccba59db52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20C=C3=A9r=C3=A8s?= Date: Wed, 13 Mar 2024 17:59:20 +0100 Subject: [PATCH] Update Corese download links --- README.md | 8 ++++---- corese-server/build-docker/corese/Dockerfile | 2 +- docs/corese-python/Corese-library with Python.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2bb1b72ef..ca1bd4f1e 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ docker run --name my-corese \ - Alternatively, download [Corese-server jar file](https://project.inria.fr/corese/jar/). ```sh -wget "files.inria.fr/corese/distrib/corese-server-4.5.0.jar" +wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-server-4.5.0.jar" java -jar "-Dfile.encoding=UTF8" "corese-server-4.5.0.jar" ``` @@ -94,7 +94,7 @@ java -jar "-Dfile.encoding=UTF8" "corese-server-4.5.0.jar" - Or download [Corese-gui jar file](https://project.inria.fr/corese/jar/). ```sh -wget "files.inria.fr/corese/distrib/corese-gui-4.5.0.jar" +wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-gui-4.5.0.jar" java -jar "-Dfile.encoding=UTF8" "corese-gui-4.5.0.jar" ``` @@ -110,7 +110,7 @@ java -jar "-Dfile.encoding=UTF8" "corese-gui-4.5.0.jar" - Or download [Corese-command jar file](https://project.inria.fr/corese/jar/). ```sh -wget "files.inria.fr/corese/distrib/corese-command-4.5.0.jar" +wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-command-4.5.0.jar" java -jar "-Dfile.encoding=UTF8" "corese-command-4.5.0.jar" ``` @@ -135,7 +135,7 @@ curl -sSL https://files.inria.fr/corese/distrib/script/uninstall-corese-command. - Download [Corese-python jar file](https://project.inria.fr/corese/jar/). ```sh -wget "files.inria.fr/corese/distrib/corese-library-python-4.5.0.jar" +wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-library-python-4.5.0.jar" java -jar "-Dfile.encoding=UTF8" "corese-library-python-4.5.0.jar" ``` diff --git a/corese-server/build-docker/corese/Dockerfile b/corese-server/build-docker/corese/Dockerfile index a9f98d168..5ce4463ba 100644 --- a/corese-server/build-docker/corese/Dockerfile +++ b/corese-server/build-docker/corese/Dockerfile @@ -7,7 +7,7 @@ ENV CORESE="/usr/local/corese" RUN mkdir -p $CORESE WORKDIR $CORESE -RUN wget http://files.inria.fr/corese/distrib/corese-server-4.5.0.jar +RUN wget https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-server-4.5.0.jar COPY log4j2.xml $CORESE/log4j2.xml COPY corese-default-profile.ttl $CORESE/corese-default-profile.ttl diff --git a/docs/corese-python/Corese-library with Python.md b/docs/corese-python/Corese-library with Python.md index e8c54dc15..5f6e9cf58 100644 --- a/docs/corese-python/Corese-library with Python.md +++ b/docs/corese-python/Corese-library with Python.md @@ -4,7 +4,7 @@ 1. Install java and python 2. Install python dependencies `pip install --user py4j` -3. Download [corese-library-python-4.5.0.jar](http://files.inria.fr/corese/distrib/corese-library-python-4.5.0.jar) +3. Download [corese-library-python-4.5.0.jar](https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-library-python-4.5.0.jar) 4. Place in the same directory `corese-library-python-4.5.0.jar` and your code `myCode.py` 5. Run with `python myCode.py`