Skip to content

Commit edd77a4

Browse files
committed
Added jcip dependency
1 parent f80057c commit edd77a4

File tree

1 file changed

+18
-13
lines changed

1 file changed

+18
-13
lines changed

pom.xml

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<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/maven-v4_0_0.xsd">
4-
4+
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>info.debatty</groupId>
77
<artifactId>java-string-similarity</artifactId>
8-
<version>0.16-SNAPSHOT</version>
8+
<version>0.16-SNAPSHOT</version>
99
<packaging>jar</packaging>
10-
10+
1111
<name>${project.artifactId}</name>
1212
<url>https://github.com/tdebatty/java-string-similarity</url>
1313
<description>Implementation of various string similarity and distance algorithms: Levenshtein, Jaro-winkler, n-Gram, Q-Gram, Jaccard index, Longest Common Subsequence edit distance, cosine similarity...</description>
14-
14+
1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17-
</properties>
18-
17+
</properties>
18+
1919
<licenses>
2020
<license>
2121
<name>MIT License</name>
@@ -36,7 +36,7 @@
3636
<url>[email protected]:tdebatty/java-string-similarity.git</url>
3737
<tag>v0.7</tag>
3838
</scm>
39-
39+
4040
<distributionManagement>
4141
<snapshotRepository>
4242
<id>ossrh</id>
@@ -61,7 +61,7 @@
6161
<autoReleaseAfterClose>true</autoReleaseAfterClose>
6262
</configuration>
6363
</plugin>
64-
64+
6565
<plugin>
6666
<groupId>org.apache.maven.plugins</groupId>
6767
<artifactId>maven-source-plugin</artifactId>
@@ -75,7 +75,7 @@
7575
</execution>
7676
</executions>
7777
</plugin>
78-
78+
7979
<plugin>
8080
<groupId>org.apache.maven.plugins</groupId>
8181
<artifactId>maven-javadoc-plugin</artifactId>
@@ -89,7 +89,7 @@
8989
</execution>
9090
</executions>
9191
</plugin>
92-
92+
9393
<plugin>
9494
<groupId>org.apache.maven.plugins</groupId>
9595
<artifactId>maven-gpg-plugin</artifactId>
@@ -104,7 +104,7 @@
104104
</execution>
105105
</executions>
106106
</plugin>
107-
107+
108108
<plugin>
109109
<groupId>org.apache.maven.plugins</groupId>
110110
<artifactId>maven-compiler-plugin</artifactId>
@@ -114,7 +114,7 @@
114114
<target>1.5</target>
115115
</configuration>
116116
</plugin>
117-
117+
118118
<!-- To create the Github release -->
119119
<plugin>
120120
<groupId>org.apache.maven.plugins</groupId>
@@ -156,14 +156,19 @@
156156
</plugin>
157157
</plugins>
158158
</build>
159-
159+
160160
<dependencies>
161161
<dependency>
162162
<groupId>junit</groupId>
163163
<artifactId>junit</artifactId>
164164
<version>4.10</version>
165165
<scope>test</scope>
166166
</dependency>
167+
<dependency>
168+
<groupId>net.jcip</groupId>
169+
<artifactId>jcip-annotations</artifactId>
170+
<version>1.0</version>
171+
</dependency>
167172
</dependencies>
168173
</project>
169174

0 commit comments

Comments
 (0)