87 lines
3.0 KiB
XML
87 lines
3.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.github.universal-automata</groupId>
|
|
<artifactId>liblevenshtein</artifactId>
|
|
<version>3.0.0</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>annotations</artifactId>
|
|
<version>3.0.1</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>19.0</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.protobuf</groupId>
|
|
<artifactId>protobuf-java-util</artifactId>
|
|
<version>3.0.0-beta-3</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.protobuf</groupId>
|
|
<artifactId>protobuf-java</artifactId>
|
|
<version>3.0.0-beta-3</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>it.unimi.dsi</groupId>
|
|
<artifactId>fastutil</artifactId>
|
|
<version>7.0.12</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.4</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.16.8</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.21</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<name>liblevenshtein</name>
|
|
<description>A library for spelling-correction based on Levenshtein Automata.</description>
|
|
<url>https://github.com/universal-automata/liblevenshtein-java/</url>
|
|
<inceptionYear>2012</inceptionYear>
|
|
<packaging>jar</packaging>
|
|
<licenses>
|
|
<license>
|
|
<name>MIT License</name>
|
|
<url>https://raw.githubusercontent.com/universal-automata/liblevenshtein-java/master/LICENSE</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<id>dylon</id>
|
|
<name>Dylon Edwards</name>
|
|
<email>dylon.devo+liblevenshtein-java@gmail.com</email>
|
|
<url>https://github.com/dylon</url>
|
|
</developer>
|
|
</developers>
|
|
<issueManagement>
|
|
<system>GitHub Issues</system>
|
|
<url>https://github.com/universal-automata/liblevenshtein-java//issues</url>
|
|
</issueManagement>
|
|
<scm>
|
|
<url>https://github.com/universal-automata/liblevenshtein-java/</url>
|
|
<connection>scm:git:https://github.com/universal-automata/liblevenshtein-java.git</connection>
|
|
<developerConnection>scm:git:git@github.com:universal-automata/liblevenshtein-java.git</developerConnection>
|
|
</scm>
|
|
</project>
|