sotorrent / releases

Repository for Maven deployment.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

releases

Repository for Maven deployment.

DOI

Usage

If you want to use one of the SOTorrent libraries in your project, you first need to configure this GitHub repository as a Maven repository. Simply add the following to your pom.xml:

<repositories>
    <repository>
        <id>sotorrent</id>
        <url>https://raw.github.com/sotorrent/releases/master/</url>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
        </snapshots>
    </repository>
</repositories>

You can then add, for example, the string-similarity library as a dependency:

<dependencies>
    <dependency>
        <groupId>org.sotorrent</groupId>
        <artifactId>string-similarity</artifactId>
        <version>LATEST</version>
    </dependency>
</dependencies>

About

Repository for Maven deployment.

License:Apache License 2.0