4
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
5
<modelVersion >4.0.0</modelVersion >
6
6
7
- <groupId >com.pe.text </groupId >
7
+ <groupId >com.productiveedge </groupId >
8
8
<artifactId >fuzzy-search</artifactId >
9
- <version >1.0-SNAPSHOT</version >
9
+ <version >1.0</version >
10
+ <packaging >jar</packaging >
11
+ <name >com.productiveedge:fuzzy-search</name >
12
+ <description >Fuzzy Search library implements approximate string matching (fuzzy string searching)</description >
13
+ <licenses >
14
+ <license >
15
+ <name >The MIT License (MIT)</name >
16
+ <url >https://github.com/Productive-Edge/pe-fuzzy-search-java/blob/dev/LICENSE.md</url >
17
+ <distribution >repo</distribution >
18
+ </license >
19
+ </licenses >
20
+ <url >https://github.com/Productive-Edge/pe-fuzzy-search-java/</url >
21
+ <developers >
22
+ <developer >
23
+ <id >gyermakavets</id >
24
+ <name >Henadz Yermakavets</name >
25
+ <email >gyermakavets@productiveedge.com</email >
26
+ <organization >Productive Edge LLC</organization >
27
+ <organizationUrl >https://www.productiveedge.com/</organizationUrl >
28
+ <roles >
29
+ <role >developer</role >
30
+ </roles >
31
+ </developer >
32
+ </developers >
33
+ <scm >
34
+ <connection >scm:git:git@github.com:Productive-Edge/pe-fuzzy-search-java.git</connection >
35
+ <developerConnection >scm:git:git@github.com:Productive-Edge/pe-fuzzy-search-java.git</developerConnection >
36
+ <url >https://github.com/Productive-Edge/pe-fuzzy-search-java</url >
37
+ </scm >
10
38
<dependencies >
11
39
<dependency >
12
40
<groupId >it.unimi.dsi</groupId >
17
45
<dependency >
18
46
<groupId >org.junit.jupiter</groupId >
19
47
<artifactId >junit-jupiter</artifactId >
20
- <version >RELEASE </version >
48
+ <version >5.10.2 </version >
21
49
<scope >test</scope >
22
50
</dependency >
23
51
<dependency >
29
57
<dependency >
30
58
<groupId >org.apache.commons</groupId >
31
59
<artifactId >commons-text</artifactId >
32
- <version >1.9 </version >
60
+ <version >1.11.0 </version >
33
61
<scope >test</scope >
34
62
</dependency >
35
63
</dependencies >
36
64
37
65
<properties >
38
66
<maven .compiler.source>8</maven .compiler.source>
39
67
<maven .compiler.target>8</maven .compiler.target>
68
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
40
69
</properties >
41
70
71
+ <profiles >
72
+ <profile >
73
+ <id >release</id >
74
+ <build >
75
+ <plugins >
76
+ <plugin >
77
+ <groupId >org.apache.maven.plugins</groupId >
78
+ <artifactId >maven-source-plugin</artifactId >
79
+ <version >3.2.1</version >
80
+ <executions >
81
+ <execution >
82
+ <id >attach-sources</id >
83
+ <goals >
84
+ <goal >jar-no-fork</goal >
85
+ </goals >
86
+ </execution >
87
+ </executions >
88
+ </plugin >
89
+ <plugin >
90
+ <groupId >org.apache.maven.plugins</groupId >
91
+ <artifactId >maven-javadoc-plugin</artifactId >
92
+ <version >3.5.0</version >
93
+ <executions >
94
+ <execution >
95
+ <id >attache-javadoc</id >
96
+ <goals >
97
+ <goal >jar</goal >
98
+ </goals >
99
+ </execution >
100
+ </executions >
101
+ </plugin >
102
+ <plugin >
103
+ <groupId >org.apache.maven.plugins</groupId >
104
+ <artifactId >maven-gpg-plugin</artifactId >
105
+ <version >3.1.0</version >
106
+ <executions >
107
+ <execution >
108
+ <id >sign-artifacts</id >
109
+ <phase >verify</phase >
110
+ <goals >
111
+ <goal >sign</goal >
112
+ </goals >
113
+ </execution >
114
+ </executions >
115
+ </plugin >
116
+ <plugin >
117
+ <groupId >org.sonatype.central</groupId >
118
+ <artifactId >central-publishing-maven-plugin</artifactId >
119
+ <version >0.3.0</version >
120
+ <extensions >true</extensions >
121
+ <configuration >
122
+ <publishingServerId >central</publishingServerId >
123
+ <tokenAuth >true</tokenAuth >
124
+ </configuration >
125
+ </plugin >
126
+ </plugins >
127
+ </build >
128
+ </profile >
129
+ </profiles >
42
130
</project >
0 commit comments