Mentions légales du service

Skip to content
Snippets Groups Projects
Commit a7261411 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

Corrected link to License in README.md

parent a346a456
No related branches found
No related tags found
No related merge requests found
Pipeline #811120 failed
...@@ -106,7 +106,7 @@ See https://gitlab.inria.fr/moex/alignapi ...@@ -106,7 +106,7 @@ See https://gitlab.inria.fr/moex/alignapi
<ul> <ul>
<li><tt>README.md</tt>: This file</li> <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>build.xml</tt>: the Ant build file for compiling and testing</li>
<li><tt>classes/</tt>: directory for compiling the sources</li> <li><tt>classes/</tt>: directory for compiling the sources</li>
<li><tt>distrib/</tt>: some files for generating new jarfiles</li> <li><tt>distrib/</tt>: some files for generating new jarfiles</li>
......
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
<tstamp><format locale="fr,fr" pattern="dd/MM/yyyy" property="date"/></tstamp> <tstamp><format locale="fr,fr" pattern="dd/MM/yyyy" property="date"/></tstamp>
<property name="version.major" value="4"/> <property name="version.major" value="4"/>
<property name="version.minor" value="10"/> <property name="version.minor" value="10"/>
<property name="copyyear" value="2003-2021"/> <property name="copyyear" value="2003-2022"/>
<!-- second attempt --> <!-- second attempt -->
<property name="git.hash" value="${repository.version}"/> <property name="git.hash" value="${repository.version}"/>
......
...@@ -23,14 +23,24 @@ However, we have no reason to not help our Maven users as long as this is not to ...@@ -23,14 +23,24 @@ However, we have no reason to not help our Maven users as long as this is not to
<p> <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: 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"> <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/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/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/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 $ mvn install:install-file -Dfile=${DIR}/lib/alignsvc.jar -DpomFile=${DIR}/lib/alignsvc.pom -Dpackaging=jar
</div> </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> </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> <h2>Generating a local repository</h2>
<p> <p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment