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

Commit 9cdac2d

Browse files
committed
Merge branch 'v2.1.x'
Conflicts: pom.xml
2 parents 8db047c + c0908b5 commit 9cdac2d

File tree

1 file changed

+62
-13
lines changed

1 file changed

+62
-13
lines changed

pom.xml

Lines changed: 62 additions & 13 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>
712
<version>2.2.0-SNAPSHOT</version>
8-
<name>Analytics Stream Library</name>
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,49 @@
116136
</execution>
117137
</executions>
118138
</plugin>
139+
140+
<plugin>
141+
<artifactId>maven-release-plugin</artifactId>
142+
<version>2.2</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+
<stagingRepository>sonatype-nexus-staging::default::https://oss.sonatype.org/service/local/staging/deploy/maven2</stagingRepository>
148+
</configuration>
149+
</plugin>
150+
151+
<plugin>
152+
<groupId>org.apache.maven.plugins</groupId>
153+
<artifactId>maven-gpg-plugin</artifactId>
154+
<version>1.0</version>
155+
<executions>
156+
<execution>
157+
<id>sign-artifacts</id>
158+
<phase>verify</phase>
159+
<goals>
160+
<goal>sign</goal>
161+
</goals>
162+
</execution>
163+
</executions>
164+
</plugin>
119165
</plugins>
120166
</build>
121167

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-
-->
168+
<developers>
169+
<developer>
170+
<name>Matt Abrams</name>
171+
<email>[email protected]</email>
172+
</developer>
173+
<developer>
174+
<name>Chris Burroughs</name>
175+
<email>[email protected]</email>
176+
</developer>
177+
</developers>
134178

179+
<scm>
180+
<connection>scm:git:git://github.com/clearspring/stream-lib.git</connection>
181+
<developerConnection>scm:git:git://github.com/clearspring/stream-lib.git</developerConnection>
182+
<url>https://github.com/clearspring/stream-lib</url>
183+
</scm>
135184
</project>

0 commit comments

Comments
 (0)