|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 |
|
3 | 3 | <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 | + |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <groupId>info.debatty</groupId> |
7 | 7 | <artifactId>java-string-similarity</artifactId> |
8 | | - <version>0.16-SNAPSHOT</version> |
| 8 | + <version>0.16-SNAPSHOT</version> |
9 | 9 | <packaging>jar</packaging> |
10 | | - |
| 10 | + |
11 | 11 | <name>${project.artifactId}</name> |
12 | 12 | <url>https://github.com/tdebatty/java-string-similarity</url> |
13 | 13 | <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 | + |
15 | 15 | <properties> |
16 | 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
17 | | - </properties> |
18 | | - |
| 17 | + </properties> |
| 18 | + |
19 | 19 | <licenses> |
20 | 20 | <license> |
21 | 21 | <name>MIT License</name> |
|
36 | 36 | <url>git@github.com:tdebatty/java-string-similarity.git</url> |
37 | 37 | <tag>v0.7</tag> |
38 | 38 | </scm> |
39 | | - |
| 39 | + |
40 | 40 | <distributionManagement> |
41 | 41 | <snapshotRepository> |
42 | 42 | <id>ossrh</id> |
|
61 | 61 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
62 | 62 | </configuration> |
63 | 63 | </plugin> |
64 | | - |
| 64 | + |
65 | 65 | <plugin> |
66 | 66 | <groupId>org.apache.maven.plugins</groupId> |
67 | 67 | <artifactId>maven-source-plugin</artifactId> |
|
75 | 75 | </execution> |
76 | 76 | </executions> |
77 | 77 | </plugin> |
78 | | - |
| 78 | + |
79 | 79 | <plugin> |
80 | 80 | <groupId>org.apache.maven.plugins</groupId> |
81 | 81 | <artifactId>maven-javadoc-plugin</artifactId> |
|
89 | 89 | </execution> |
90 | 90 | </executions> |
91 | 91 | </plugin> |
92 | | - |
| 92 | + |
93 | 93 | <plugin> |
94 | 94 | <groupId>org.apache.maven.plugins</groupId> |
95 | 95 | <artifactId>maven-gpg-plugin</artifactId> |
|
104 | 104 | </execution> |
105 | 105 | </executions> |
106 | 106 | </plugin> |
107 | | - |
| 107 | + |
108 | 108 | <plugin> |
109 | 109 | <groupId>org.apache.maven.plugins</groupId> |
110 | 110 | <artifactId>maven-compiler-plugin</artifactId> |
|
114 | 114 | <target>1.5</target> |
115 | 115 | </configuration> |
116 | 116 | </plugin> |
117 | | - |
| 117 | + |
118 | 118 | <!-- To create the Github release --> |
119 | 119 | <plugin> |
120 | 120 | <groupId>org.apache.maven.plugins</groupId> |
|
156 | 156 | </plugin> |
157 | 157 | </plugins> |
158 | 158 | </build> |
159 | | - |
| 159 | + |
160 | 160 | <dependencies> |
161 | 161 | <dependency> |
162 | 162 | <groupId>junit</groupId> |
163 | 163 | <artifactId>junit</artifactId> |
164 | 164 | <version>4.10</version> |
165 | 165 | <scope>test</scope> |
166 | 166 | </dependency> |
| 167 | + <dependency> |
| 168 | + <groupId>net.jcip</groupId> |
| 169 | + <artifactId>jcip-annotations</artifactId> |
| 170 | + <version>1.0</version> |
| 171 | + </dependency> |
167 | 172 | </dependencies> |
168 | 173 | </project> |
169 | 174 |
|
|
0 commit comments