forked from LiveRamp/HyperMinHash-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
233 lines (213 loc) · 7.2 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.liveramp</groupId>
<artifactId>hyperminhash</artifactId>
<version>0.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>
HyperMinHash is a probabilistic data structure that can approximate union, intersection, and set
cardinalities as well as Jaccard indices of very large sets with high accuracy, in loglog space,
and in a streaming fashion.
</description>
<url>www.github.com/LiveRamp/HyperMinHash-java</url>
<organization>
<name>LiveRamp</name>
<url>www.liveramp.com</url>
</organization>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:LiveRamp/HyperMinHash-java.git</connection>
<url>scm:git:[email protected]:LiveRamp/HyperMinHash-java.git</url>
<developerConnection>scm:git:[email protected]:LiveRamp/HyperMinHash-java.git</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>Github</system>
<url>www.github.com/LiveRamp/HyperMinHash-java</url>
</issueManagement>
<developers>
<developer>
<name>Christian Hansen</name>
<email>[email protected]</email>
<organization>LiveRamp</organization>
<organizationUrl>www.liveramp.com</organizationUrl>
</developer>
<developer>
<name>Harry Rackmil</name>
<email>[email protected]</email>
<organization>LiveRamp</organization>
<organizationUrl>www.liveramp.com</organizationUrl>
</developer>
<developer>
<name>Shrif Nada</name>
<email>[email protected]</email>
<organization>LiveRamp</organization>
<organizationUrl>www.liveramp.com</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<!-- Used to pin the compiler to JDK 1.8 -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!--
Used to publish artifacts produced by this project to Sonatype (which is mirrored to
Maven Central).
-->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<!-- Used to sign artifacts with our GPG key, as required by Sona Type. -->
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<!-- The "sign" goal is one of the GPG plugin's
goals. It produces signature files for the
artifacts in this build. -->
<goal>sign</goal>
</goals>
<!-- If testing releases with hardcoded values in your settings.xml file, uncomment
this setting to make GPG read those hardcoded literals -->
<!--<configuration>-->
<!--<gpgArguments>-->
<!--<arg>--pinentry-mode</arg>-->
<!--<arg>loopback</arg>-->
<!--</gpgArguments>-->
<!--</configuration>-->
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- Used to generate a stand-alone JAR which includes all dependencies. Note that even though
we're using the shading plugin, we're not actually renaming any dependencies. We're only
using the shading plugin's capability to create an uber jar. -->
<profile>
<id>uberjar</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>uber-${artifactId}-${version}</finalName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<!-- Used to package the Javadocs and source code for this project -->
<profile>
<id>build-src-and-docs</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<!-- Used to build a JAR containing the source code from this project -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Used to generate javadocs for this project -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<configuration>
<doclint>none</doclint>
</configuration>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.4.1</version>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>