diff --git a/build.xml b/build.xml index 6ce57775a1f891e0b81efbd0ed860ee755a74879..bb5f3f4529e0cdf21abea30388f4973474dd7588 100644 --- a/build.xml +++ b/build.xml @@ -34,7 +34,7 @@ </echo> </target> - <target name="bind"> + <target name="bind" description="Set variables"> <property file="../build.properties"/> <!-- This should now be handled by GForge --> <property name="tooldir" value="tools" /> @@ -48,7 +48,7 @@ <property name="jarclasspath" value="skosapi/skosapi.jar owlapi30/owlapi-bin.jar ontosim/ontosim.jar getopt/getopt.jar log4j/commons-logging.jar log4j/log4j.jar log4j/slf4j-api.jar log4j/slf4j-log4j.jar jwnl/jwnl.jar lucene/lucene-core.jar jena/jena.jar jena/iri.jar jena/icu4j.jar xerces/xercesImpl.jar xerces/resolver.jar xerces/xml-apis.jar align.jar ontowrap.jar procalign.jar"/> </target> - <target name="versionnumber" depends="init"> + <target name="versionnumber" depends="init" description="Establishes the version number"> <tstamp><format locale="fr,fr" pattern="dd/MM/yyyy" property="date"/></tstamp> <property name="version.major" value="4"/> <property name="version.minor" value="3"/> @@ -73,12 +73,12 @@ <filter token="VERS" value="${version}"/> </target> - <target name="upgrade"> + <target name="upgrade" description="Upgrade local dependencies"> <copy file="../ontosim/lib/ontosim.jar" todir="lib/ontosim" filtering="false"/> </target> <!-- tested --> - <target name="compile" depends="init"> + <target name="compile" depends="init" description="Incrementally compile source files"> <echo message="Compiling..."/> <property name="javacargs" value="-deprecation" /> <mkdir dir="classes"/> @@ -89,7 +89,7 @@ </target> <!-- tested --> - <target name="compileall" depends="versionnumber"> + <target name="compileall" depends="versionnumber" description="Recompile all source files and create jar"> <echo message="Erasing..."/> <delete> <fileset dir="." includes="classes/**/*.class"/> @@ -102,7 +102,7 @@ </target> <!-- tested --> - <target name="lint" depends="init"> + <target name="lint" depends="init" description="Check sources for warnings"> <echo message="Setting property..."/> <!-- values: cast,deprecation,divzero,empty,unchecked[3],fallthrough,path[5],serial,finally,overrides,all,none --> <!--property name="javacargs" value="-Xlint:cast" /--> @@ -110,7 +110,7 @@ <antcall target="compileall"/> </target> - <!--target name="analyse" depends="jar"> + <!--target name="analyse" depends="jar" description="Perform static analysis of code"> // Use Checkstyle <taskdef resource="checkstyletask.properties" classpath="${tooldir}/checkstyle/checkstyle-all-5.0.jar"/> @@ -144,8 +144,8 @@ <!-- cover: emma seems really difficult <taskdef resource="emma_ant.properties" classpathref="emma.lib" /--> - <!-- tested --> - <target name="jar" depends="compile"> + <!-- tested: should be modularised --> + <target name="jar" depends="compile" description="Create jar archives"> <echo message="Jarchiving..."/> <copy file="distrib/LICENSE.TXT" tofile="classes/LICENSE.TXT" filtering="true"/> <delete file="lib/align.jar"/> @@ -165,6 +165,14 @@ <fileset dir="classes" includes="org/semanticweb/owl/align/*.class"/> <fileset dir="classes" includes="LICENSE.TXT"/> </jar> + <copy file="distrib/align.pom" toFile="lib/align.pom"> + <filterset> + <filter token="VERS" value="${version}"/> + <filter token="DATE" value="${date}"/> + <filter token="REV" value="${svn.rev}"/> + <filter token="COPYYEAR" value="${copyyear}"/> + </filterset> + </copy> <delete file="lib/ontowrap.jar"/> <jar jarfile="lib/ontowrap.jar"> <manifest> @@ -183,6 +191,14 @@ <fileset dir="classes" includes="LICENSE.TXT"/> <fileset dir="src" includes="fr/inrialpes/exmo/ontowrap/**/*.rdf"/> </jar> + <copy file="distrib/ontowrap.pom" toFile="lib/ontowrap.pom"> + <filterset> + <filter token="VERS" value="${version}"/> + <filter token="DATE" value="${date}"/> + <filter token="REV" value="${svn.rev}"/> + <filter token="COPYYEAR" value="${copyyear}"/> + </filterset> + </copy> <delete file="lib/procalign.jar"/> <jar jarfile="lib/procalign.jar"> <manifest> @@ -208,6 +224,14 @@ <fileset dir="classes" includes="fr/inrialpes/exmo/align/ling/**/*.class"/> <fileset dir="classes" includes="LICENSE.TXT"/> </jar> + <copy file="distrib/procalign.pom" toFile="lib/procalign.pom"> + <filterset> + <filter token="VERS" value="${version}"/> + <filter token="DATE" value="${date}"/> + <filter token="REV" value="${svn.rev}"/> + <filter token="COPYYEAR" value="${copyyear}"/> + </filterset> + </copy> <delete file="lib/alignsvc.jar"/> <copy file="src/fr/inrialpes/exmo/align/service/aserv.wsdl" tofile="classes/fr/inrialpes/exmo/align/service/aserv.wsdl" filtering="false"/> <jar jarfile="lib/alignsvc.jar"> @@ -230,10 +254,18 @@ <fileset dir="classes" includes="fr/inrialpes/exmo/queryprocessor/**/*.class"/> <fileset dir="classes" includes="LICENSE.TXT"/> </jar> + <copy file="distrib/alignsvc.pom" toFile="lib/alignsvc.pom"> + <filterset> + <filter token="VERS" value="${version}"/> + <filter token="DATE" value="${date}"/> + <filter token="REV" value="${svn.rev}"/> + <filter token="COPYYEAR" value="${copyyear}"/> + </filterset> + </copy> </target> <!-- tested --> - <target name="cleanjar" depends="init"> + <target name="cleanjar" depends="init" description="Delete jar archives"> <echo message="Erasing..."/> <delete file="lib/align.jar"/> <delete file="lib/ontowrap.jar"/> @@ -258,7 +290,7 @@ </target> <!-- tested --> - <target name="test" depends="init"> + <target name="test" depends="init" description="Unit test code"> <echo message="Testing..."/> <taskdef name="testng" classpath="${tooldir}/testng/testng.jar" classname="org.testng.TestNGAntTask" /> @@ -283,7 +315,7 @@ </target> <!-- tested --> - <target name="cleantest" depends="init"> + <target name="cleantest" depends="init" description="Clean up test directory"> <echo message="Cleaning tests..."/> <delete> <fileset dir="test/classes" includes="**/*.class"/> @@ -294,7 +326,7 @@ </target> <!-- tested --> - <target name="javadoc" depends="versionnumber"> + <target name="javadoc" depends="versionnumber" description="Generate java documentation"> <echo message="Javadocing... ${version}"/> <javadoc destdir="javadoc" @@ -322,7 +354,7 @@ </target> <!-- tested --> - <target name="release" depends="versionnumber"> + <target name="release" depends="versionnumber" description="Release a new version of the API"> <echo message="Releasing version ${version} (${svn.revision})" /> <!--echo message="Are you sure that everything is OK (update/ci/compile/lint)?"/--> <copy file="distrib/LICENSE.TXT" tofile="LICENSE.TXT" filtering="true"/> @@ -337,7 +369,7 @@ </target> <!-- tested --> - <target name="zip" depends="init"> + <target name="zip" depends="init" description="Generate zip file containing a release"> <echo message="Ziping..."/> <antcall target="clean"/> <!-- Unfortunately commit is not functional --> @@ -432,7 +464,7 @@ </target> <!-- tested --> - <target name="clean"> + <target name="clean" description="Clean up the whole directory"> <echo message="Cleaning..."/> <antcall target="cleantest"/> <ant dir="plugins/neon" target="clean" /> diff --git a/distrib/align.pom b/distrib/align.pom new file mode 100644 index 0000000000000000000000000000000000000000..423dec435c6d311f677f07d793c25b43c40a605f --- /dev/null +++ b/distrib/align.pom @@ -0,0 +1,47 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.semanticweb.owl</groupId> + <artifactId>align</artifactId> + <version>@VERS@</version> + <!-- Rev @REV@ @DATE@ --> + <name>The Alignment API</name> + <description>The Alignment API is an API for manipulating ontology alignments.</description> + <url>http://alignapi.gforge.inria.fr</url> + <organization> + <name>INRIA Exmo team</name> + <url>http://exmo.inrialpes.fr</url> + </organization> + <!-- (C) INRIA, @COPYYEAR@ --> + <licenses> + <license> + <name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999</name> + <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> + </license> + <licence> + <name>CeCILL-C Licence française de logiciel libre</name> + <url>http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt</url> + </license> + </licenses> + <packaging>jar</packaging> + + <!-- add dependencies --> + + <developers> + <developer> + <id>JeromE</id> + <name>Jérôme Euzenat</name> + <organization>INRIA</organization> + <email>Jerome.Euzenat@acm.org</email> + <roles> + <role>Main developer</role> + <role>Maintainer</role> + </roles> + <timezone>1</timezone> + </developer> + </developers> + <!-- For contributors, see http://alignapi.gforge.inria.fr/credits.html --> + +</project> diff --git a/distrib/alignsvc.pom b/distrib/alignsvc.pom new file mode 100644 index 0000000000000000000000000000000000000000..736252dab0188494d8f88cadcf770a20eefea2c7 --- /dev/null +++ b/distrib/alignsvc.pom @@ -0,0 +1,64 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>fr.inrialpes.exmo.align.service</groupId> + <artifactId>alignsvc</artifactId> + <version>@VERS@</version> + <!-- Rev @REV@ @DATE@ --> + <name>Alignment server</name> + <description>A server for storing and sharing ontology alignments.</description> + <url>http://alignapi.gforge.inria.fr</url> + <organization> + <name>INRIA Exmo team</name> + <url>http://exmo.inrialpes.fr</url> + </organization> + <!-- (C) INRIA, @COPYYEAR@ --> + <licenses> + <license> + <name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999</name> + <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> + </license> + <licence> + <name>CeCILL-C Licence française de logiciel libre</name> + <url>http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt</url> + </license> + </licenses> + <packaging>jar</packaging> + + <dependencies> + <dependency> + <groupId>org.semanticweb.owl</groupId> + <artifactId>align</artifactId> + <version>@VERS@</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>fr.inrialpes.exmo</groupId> + <artifactId>ontowrap</artifactId> + <version>@VERS@</version> + </dependency> + <dependency> + <groupId>fr.inrialpes.exmo.impl</groupId> + <artifactId>procalign</artifactId> + <version>@VERS@</version> + </dependency> + <dependencies> + + <developers> + <developer> + <id>JeromE</id> + <name>Jérôme Euzenat</name> + <organization>INRIA</organization> + <email>Jerome.Euzenat@acm.org</email> + <roles> + <role>Main developer</role> + <role>Maintainer</role> + </roles> + <timezone>1</timezone> + </developer> + </developers> + <!-- For contributors, see http://alignapi.gforge.inria.fr/credits.html --> + +</project> diff --git a/distrib/ontowrap.pom b/distrib/ontowrap.pom new file mode 100644 index 0000000000000000000000000000000000000000..eae7e84786f25c5fef34fd1b9fbd933e38075418 --- /dev/null +++ b/distrib/ontowrap.pom @@ -0,0 +1,47 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>fr.inrialpes.exmo</groupId> + <artifactId>ontowrap</artifactId> + <version>@VERS@</version> + <!-- Rev @REV@ @DATE@ --> + <name>Ontology wrapping API</name> + <description>An ontology wrapping API and library.</description> + <url>http://alignapi.gforge.inria.fr</url> + <organization> + <name>INRIA Exmo team</name> + <url>http://exmo.inrialpes.fr</url> + </organization> + <!-- (C) INRIA, @COPYYEAR@ --> + <licenses> + <license> + <name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999</name> + <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> + </license> + <licence> + <name>CeCILL-C Licence française de logiciel libre</name> + <url>http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt</url> + </license> + </licenses> + <packaging>jar</packaging> + + <!-- add dependencies to Ontology APIs --> + + <developers> + <developer> + <id>Jerome DAVID</id> + <name>Jérôme David</name> + <organization>Université Pierre Mendès-France</organization> + <email>Jerome.David@upmf-grenoble.fr</email> + <roles> + <role>Main developer</role> + <role>Maintainer</role> + </roles> + <timezone>1</timezone> + </developer> + </developers> + <!-- For contributors, see http://alignapi.gforge.inria.fr/credits.html --> + +</project> diff --git a/distrib/procalign.pom b/distrib/procalign.pom new file mode 100644 index 0000000000000000000000000000000000000000..df9e747f5897863bf7d2cfcabf1aa5bc3cbf1265 --- /dev/null +++ b/distrib/procalign.pom @@ -0,0 +1,59 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>fr.inrialpes.exmo.align.impl</groupId> + <artifactId>procalign</artifactId> + <version>@VERS@</version> + <!-- Rev @REV@ @DATE@ --> + <name>Reference implementation of the Alignment API</name> + <description>Implementation of the Alignment API for manipulating ontology alignments.</description> + <url>http://alignapi.gforge.inria.fr</url> + <organization> + <name>INRIA Exmo team</name> + <url>http://exmo.inrialpes.fr</url> + </organization> + <!-- (C) INRIA, @COPYYEAR@ --> + <licenses> + <license> + <name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999</name> + <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> + </license> + <licence> + <name>CeCILL-C Licence française de logiciel libre</name> + <url>http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt</url> + </license> + </licenses> + <packaging>jar</packaging> + + <dependencies> + <dependency> + <groupId>org.semanticweb.owl</groupId> + <artifactId>align</artifactId> + <version>@VERS@</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>fr.inrialpes.exmo</groupId> + <artifactId>ontowrap</artifactId> + <version>@VERS@</version> + </dependency> + <dependencies> + + <developers> + <developer> + <id>JeromE</id> + <name>Jérôme Euzenat</name> + <organization>INRIA</organization> + <email>Jerome.Euzenat@acm.org</email> + <roles> + <role>Main developer</role> + <role>Maintainer</role> + </roles> + <timezone>1</timezone> + </developer> + </developers> + <!-- For contributors, see http://alignapi.gforge.inria.fr/credits.html --> + +</project> diff --git a/html/relnotes.html b/html/relnotes.html index b24f966286888a09b05fc099299c8d312a5e075b..b3e77e9231a9f9effd8ae4d085d3879fd930f456 100644 --- a/html/relnotes.html +++ b/html/relnotes.html @@ -89,6 +89,7 @@ with a warning: <li>Corrected bug with <tt>owl:inverseOf</tt> in OWL rendering (edoal)</li> <li>All documentation has now been revised in html and is not in the (outdated) manuals (html)</li> <li>Replaced version.txt and license.txt by pom.xml (lib)</li> +<li>Added minimal pom.xml for generated jar files (lib)</li> </ul></p> <h2>Version 4.3 (1690): 22/02/2012 - Zimt</h2> diff --git a/lib/align.pom b/lib/align.pom new file mode 100644 index 0000000000000000000000000000000000000000..59eb34936b6dcdacef3177a4103350c05c18d1d7 --- /dev/null +++ b/lib/align.pom @@ -0,0 +1,47 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.semanticweb.owl</groupId> + <artifactId>align</artifactId> + <version>4.3</version> + <!-- Rev 1729:1732M 07/07/2012 --> + <name>The Alignment API</name> + <description>The Alignment API is an API for manipulating ontology alignments.</description> + <url>http://alignapi.gforge.inria.fr</url> + <organization> + <name>INRIA Exmo team</name> + <url>http://exmo.inrialpes.fr</url> + </organization> + <!-- (C) INRIA, 2003-2012 --> + <licenses> + <license> + <name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999</name> + <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> + </license> + <licence> + <name>CeCILL-C Licence française de logiciel libre</name> + <url>http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt</url> + </license> + </licenses> + <packaging>jar</packaging> + + <!-- add dependencies --> + + <developers> + <developer> + <id>JeromE</id> + <name>Jérôme Euzenat</name> + <organization>INRIA</organization> + <email>Jerome.Euzenat@acm.org</email> + <roles> + <role>Main developer</role> + <role>Maintainer</role> + </roles> + <timezone>1</timezone> + </developer> + </developers> + <!-- For contributors, see http://alignapi.gforge.inria.fr/credits.html --> + +</project> diff --git a/lib/alignsvc.pom b/lib/alignsvc.pom new file mode 100644 index 0000000000000000000000000000000000000000..7d9824a0de1d5599ba93711a18574c246e54e33d --- /dev/null +++ b/lib/alignsvc.pom @@ -0,0 +1,64 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>fr.inrialpes.exmo.align.service</groupId> + <artifactId>alignsvc</artifactId> + <version>4.3</version> + <!-- Rev 1729:1732M 07/07/2012 --> + <name>Alignment server</name> + <description>A server for storing and sharing ontology alignments.</description> + <url>http://alignapi.gforge.inria.fr</url> + <organization> + <name>INRIA Exmo team</name> + <url>http://exmo.inrialpes.fr</url> + </organization> + <!-- (C) INRIA, 2003-2012 --> + <licenses> + <license> + <name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999</name> + <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> + </license> + <licence> + <name>CeCILL-C Licence française de logiciel libre</name> + <url>http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt</url> + </license> + </licenses> + <packaging>jar</packaging> + + <dependencies> + <dependency> + <groupId>org.semanticweb.owl</groupId> + <artifactId>align</artifactId> + <version>4.3</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>fr.inrialpes.exmo</groupId> + <artifactId>ontowrap</artifactId> + <version>4.3</version> + </dependency> + <dependency> + <groupId>fr.inrialpes.exmo.impl</groupId> + <artifactId>procalign</artifactId> + <version>4.3</version> + </dependency> + <dependencies> + + <developers> + <developer> + <id>JeromE</id> + <name>Jérôme Euzenat</name> + <organization>INRIA</organization> + <email>Jerome.Euzenat@acm.org</email> + <roles> + <role>Main developer</role> + <role>Maintainer</role> + </roles> + <timezone>1</timezone> + </developer> + </developers> + <!-- For contributors, see http://alignapi.gforge.inria.fr/credits.html --> + +</project> diff --git a/lib/ontowrap.pom b/lib/ontowrap.pom new file mode 100644 index 0000000000000000000000000000000000000000..64a95d6b753800cdeac962fa19637b699b63de36 --- /dev/null +++ b/lib/ontowrap.pom @@ -0,0 +1,47 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>fr.inrialpes.exmo</groupId> + <artifactId>ontowrap</artifactId> + <version>4.3</version> + <!-- Rev 1729:1732M 07/07/2012 --> + <name>Ontology wrapping API</name> + <description>An ontology wrapping API and library.</description> + <url>http://alignapi.gforge.inria.fr</url> + <organization> + <name>INRIA Exmo team</name> + <url>http://exmo.inrialpes.fr</url> + </organization> + <!-- (C) INRIA, 2003-2012 --> + <licenses> + <license> + <name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999</name> + <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> + </license> + <licence> + <name>CeCILL-C Licence française de logiciel libre</name> + <url>http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt</url> + </license> + </licenses> + <packaging>jar</packaging> + + <!-- add dependencies to Ontology APIs --> + + <developers> + <developer> + <id>Jerome DAVID</id> + <name>Jérôme David</name> + <organization>Université Pierre Mendès-France</organization> + <email>Jerome.David@upmf-grenoble.fr</email> + <roles> + <role>Main developer</role> + <role>Maintainer</role> + </roles> + <timezone>1</timezone> + </developer> + </developers> + <!-- For contributors, see http://alignapi.gforge.inria.fr/credits.html --> + +</project> diff --git a/lib/procalign.pom b/lib/procalign.pom new file mode 100644 index 0000000000000000000000000000000000000000..43228e23f9c28e6a4433ca32bbc2f636fd1b5a25 --- /dev/null +++ b/lib/procalign.pom @@ -0,0 +1,59 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>fr.inrialpes.exmo.align.impl</groupId> + <artifactId>procalign</artifactId> + <version>4.3</version> + <!-- Rev 1729:1732M 07/07/2012 --> + <name>Reference implementation of the Alignment API</name> + <description>Implementation of the Alignment API for manipulating ontology alignments.</description> + <url>http://alignapi.gforge.inria.fr</url> + <organization> + <name>INRIA Exmo team</name> + <url>http://exmo.inrialpes.fr</url> + </organization> + <!-- (C) INRIA, 2003-2012 --> + <licenses> + <license> + <name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999</name> + <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> + </license> + <licence> + <name>CeCILL-C Licence française de logiciel libre</name> + <url>http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt</url> + </license> + </licenses> + <packaging>jar</packaging> + + <dependencies> + <dependency> + <groupId>org.semanticweb.owl</groupId> + <artifactId>align</artifactId> + <version>4.3</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>fr.inrialpes.exmo</groupId> + <artifactId>ontowrap</artifactId> + <version>4.3</version> + </dependency> + <dependencies> + + <developers> + <developer> + <id>JeromE</id> + <name>Jérôme Euzenat</name> + <organization>INRIA</organization> + <email>Jerome.Euzenat@acm.org</email> + <roles> + <role>Main developer</role> + <role>Maintainer</role> + </roles> + <timezone>1</timezone> + </developer> + </developers> + <!-- For contributors, see http://alignapi.gforge.inria.fr/credits.html --> + +</project>