From a7261411fcbb19d08e41fae869abf58d65a1c47b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Euzenat?= <Jerome.Euzenat@inria.fr> Date: Tue, 30 May 2023 00:27:50 +0200 Subject: [PATCH] Corrected link to License in README.md --- README.md | 2 +- build.xml | 2 +- html/maven.html | 12 +++++++++++- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 57f5c0cf..3b3c76a0 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ See https://gitlab.inria.fr/moex/alignapi <ul> <li><tt>README.md</tt>: This file</li> -<li><a href="LICENSE.TXT"><tt>LICENSE.TXT</tt></a>: the terms under which the software is licensed to you.</li> +<li><a href="LICENSE"><tt>LICENSE</tt></a>: the terms under which the software is licensed to you.</li> <li><tt>build.xml</tt>: the Ant build file for compiling and testing</li> <li><tt>classes/</tt>: directory for compiling the sources</li> <li><tt>distrib/</tt>: some files for generating new jarfiles</li> diff --git a/build.xml b/build.xml index f8dd042f..2b6b13fd 100644 --- a/build.xml +++ b/build.xml @@ -74,7 +74,7 @@ <tstamp><format locale="fr,fr" pattern="dd/MM/yyyy" property="date"/></tstamp> <property name="version.major" value="4"/> <property name="version.minor" value="10"/> - <property name="copyyear" value="2003-2021"/> + <property name="copyyear" value="2003-2022"/> <!-- second attempt --> <property name="git.hash" value="${repository.version}"/> diff --git a/html/maven.html b/html/maven.html index 4991e874..a2f41f64 100644 --- a/html/maven.html +++ b/html/maven.html @@ -23,14 +23,24 @@ However, we have no reason to not help our Maven users as long as this is not to <p> Since the Alignment API jar files have readble POM files, it is possible to add them to a local repository even if you use the Maven central repository otherwise. This can be achieved by: <div class="terminal"> +$ wget ftp://ftp.inrialpes.fr/pub/exmo/software/ontoalign/align-4.10.zip +$ unzip align-4.10.zip -d ${DIR} $ mvn install:install-file -Dfile=${DIR}/lib/align.jar -DpomFile=${DIR}/lib/align.pom -Dpackaging=jar $ mvn install:install-file -Dfile=${DIR}/lib/procalign.jar -DpomFile=${DIR}/lib/procalign.pom -Dpackaging=jar $ mvn install:install-file -Dfile=${DIR}/lib/ontowrap.jar -DpomFile=${DIR}/lib/ontowrap.pom -Dpackaging=jar $ mvn install:install-file -Dfile=${DIR}/lib/alignsvc.jar -DpomFile=${DIR}/lib/alignsvc.pom -Dpackaging=jar </div> -such that ${DIR} is the directory in which the Alignment API has been compiled. +such that ${DIR} is the directory in which the Alignment API has been downloaded. </p> +<pre> +wget ftp://ftp.inrialpes.fr/pub/exmo/software/ontoalign/align-4.10.zip +unzip align-4.10.zip -d alignapi +mvn install:install-file -Dfile=alignapi/lib/procalign.jar -DgroupId=fr.inrialpes.exmo.align -DartifactId=procalign -Dversion=4.10 -Dpackaging=jar +mvn install:install-file -Dfile=alignapi/lib/ontowrap.jar -DgroupId=fr.inrialpes.exmo.ontowrap -DartifactId=ontowrap -Dversion=4.10 -Dpackaging=jar +mvn install:install-file -Dfile=alignapi/lib/align.jar -DgroupId=org.semanticweb.owl.align -DartifactId=align -Dversion=4.10 -Dpackaging=jar +</pre> + <h2>Generating a local repository</h2> <p> -- GitLab