jMet2Ont assembled with all required dependencies can be downloaded using the following direct URL: http://maven.man.poznan.pl/repository/synat-a10-releases-public/pl/psnc/synat/jMet2Ont/1.4.3/jMet2Ont-1.4.3-executableJar.jar.
jMet2Ont library (along with source code and javadocs) can be downloaded from Artifactory repository hosted by PSNC.
Some external libraries (Sesame 2.6.8, Google Guava 10.0.1 and SLF4j 1.6.4) are used by jMet2Ont and must be present in java classpath at runtime.
To use jMet2Ont in a maven based project, first include the following repositories in your POM:
<repositories> <repository> <id>maven.man.poznan.pl-libs</id> <name>maven.man.poznan.pl-libs</name> <url>http://maven.man.poznan.pl/repository/synat-a10-libs-releases-public</url> </repository> <repository> <id>maven.man.poznan.pl</id> <name>maven.man.poznan.pl</name> <url>http://maven.man.poznan.pl/repository/synat-a10-releases-public</url> </repository> </repositories>
Then add dependency to desired artifact:
<dependency> <groupId>pl.psnc.synat</groupId> <artifactId>jMet2Ont</artifactId> <version>1.4.3</version> </dependency>
<dependency> <groupId>pl.psnc.synat</groupId> <artifactId>jMet2Ont</artifactId> <version>1.4.3</version> <classifier>sources</classifier> </dependency>
<dependency> <groupId>pl.psnc.synat</groupId> <artifactId>jMet2Ont</artifactId> <version>1.4.3</version> <classifier>javadoc</classifier> </dependency>