Skip to content
This repository was archived by the owner on Jul 7, 2020. It is now read-only.

Commit ff4a6ec

Browse files
committed
- add data for maven central
- config for Sonatype OSS repository
1 parent 40c9a77 commit ff4a6ec

File tree

1 file changed

+57
-14
lines changed

1 file changed

+57
-14
lines changed

pom.xml

Lines changed: 57 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>org.sonatype.oss</groupId>
6+
<artifactId>oss-parent</artifactId>
7+
<version>7</version>
8+
</parent>
49

510
<groupId>com.clearspring.analytics</groupId>
611
<artifactId>stream</artifactId>
7-
<version>2.1.0</version>
8-
<name>Analytics Stream Library</name>
12+
<version>2.1.1-SNAPSHOT</version>
13+
<name>stream-lib</name>
14+
<description>A library for summarizing data in streams for which it is infeasible to store all events</description>
15+
<url>https://github.com/clearspring/stream-lib</url>
916
<licenses>
1017
<license>
1118
<name>The Apache Software License, Version 2.0</name>
@@ -73,6 +80,19 @@
7380
</executions>
7481
</plugin>
7582

83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-javadoc-plugin</artifactId>
86+
<executions>
87+
<execution>
88+
<id>attach-javadocs</id>
89+
<goals>
90+
<goal>jar</goal>
91+
</goals>
92+
</execution>
93+
</executions>
94+
</plugin>
95+
7696
<plugin>
7797
<groupId>org.apache.maven.plugins</groupId>
7898
<artifactId>maven-surefire-plugin</artifactId>
@@ -116,20 +136,43 @@
116136
</execution>
117137
</executions>
118138
</plugin>
139+
140+
<plugin>
141+
<artifactId>maven-release-plugin</artifactId>
142+
<version>2.0-beta-8</version>
143+
<configuration>
144+
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
145+
<!-- Make signing prompt for passphrase properly http://jira.codehaus.org/browse/MGPG-9 -->
146+
<mavenExecutorId>forked-path</mavenExecutorId>
147+
</configuration>
148+
</plugin>
149+
150+
<plugin>
151+
<groupId>org.apache.maven.plugins</groupId>
152+
<artifactId>maven-gpg-plugin</artifactId>
153+
<version>1.0</version>
154+
<executions>
155+
<execution>
156+
<id>sign-artifacts</id>
157+
<phase>verify</phase>
158+
<goals>
159+
<goal>sign</goal>
160+
</goals>
161+
</execution>
162+
</executions>
163+
</plugin>
119164
</plugins>
120165
</build>
121166

122-
<!--
123-
<distributionManagement>
124-
<repository>
125-
<id>buildspring.releases</id>
126-
<url>http://buildspring/nexus/content/repositories/releases</url>
127-
</repository>
128-
<snapshotRepository>
129-
<id>buildspring.snapshots</id>
130-
<url>http://buildspring/nexus/content/repositories/snapshots</url>
131-
</snapshotRepository>
132-
</distributionManagement>
133-
-->
167+
<developers>
168+
<developer>
169+
<name>Matt Abrams</name>
170+
<email>[email protected]</email>
171+
</developer>
172+
<developer>
173+
<name>Chris Burroughs</name>
174+
<email>[email protected]</email>
175+
</developer>
176+
</developers>
134177

135178
</project>

0 commit comments

Comments
 (0)