Skip to content

Commit e49abd2

Browse files
committed
Enabling maven support and removing ant support for building sketch
library.
1 parent a06b061 commit e49abd2

File tree

2 files changed

+70
-296
lines changed

2 files changed

+70
-296
lines changed

build.xml

Lines changed: 0 additions & 296 deletions
This file was deleted.

pom.xml

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>com.yahoo.data-sketches</groupId>
6+
<artifactId>sketches-core</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>Sketch Core</name>
11+
<description>Core Sketch library</description>
12+
<url>http://datasketches.github.io/</url>
13+
14+
<inceptionYear>2015</inceptionYear>
15+
<organization>
16+
<name>Yahoo! Inc.</name>
17+
<url>http://www.yahoo.com</url>
18+
</organization>
19+
20+
<licenses>
21+
<license>
22+
<name>Apache License, Version 2.0</name>
23+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
24+
<distribution>repo</distribution>
25+
</license>
26+
</licenses>
27+
28+
<scm>
29+
<connection>scm:git:https://github.com/DataSketches/sketches-core</connection>
30+
<developerConnection>scm:git:git://github.com/DataSketches/sketches-core</developerConnection>
31+
<url>https://www.github.com/DataSketches/sketches-core</url>
32+
</scm>
33+
34+
<properties>
35+
<maven.compiler.source>1.8</maven.compiler.source>
36+
<maven.compiler.target>1.8</maven.compiler.target>
37+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38+
</properties>
39+
40+
<dependencies>
41+
<dependency>
42+
<groupId>org.testng</groupId>
43+
<artifactId>testng</artifactId>
44+
<version>6.8.8</version>
45+
<scope>test</scope>
46+
</dependency>
47+
</dependencies>
48+
49+
<build>
50+
<pluginManagement>
51+
<plugins>
52+
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<artifactId>maven-source-plugin</artifactId>
55+
<version>2.4</version>
56+
</plugin>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-javadoc-plugin</artifactId>
60+
<version>2.10.3</version>
61+
</plugin>
62+
<plugin>
63+
<groupId>org.apache.maven.plugins</groupId>
64+
<artifactId>maven-deploy-plugin</artifactId>
65+
<version>2.8.2</version>
66+
</plugin>
67+
</plugins>
68+
</pluginManagement>
69+
</build>
70+
</project>

0 commit comments

Comments
 (0)