diff --git a/README.md b/README.md index 57f5c0cfe68e3c25e03acf62605e913b70c0904d..3b3c76a0fa9a21296330326988cf6645427f7993 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 f8dd042fb0d1c0219e33e1a318c086e5fd374aba..2b6b13fdbe1af7eecec4d79635da234dcbc5f81c 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 4991e8749a8c7f4fb639013326b1e14392db1e95..a2f41f64ebabe7894cd1b5978974227689dbd0b5 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>