|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <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">
|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
| 4 | + <parent> |
| 5 | + <groupId>org.sonatype.oss</groupId> |
| 6 | + <artifactId>oss-parent</artifactId> |
| 7 | + <version>7</version> |
| 8 | + </parent> |
4 | 9 |
|
5 | 10 | <groupId>com.clearspring.analytics</groupId>
|
6 | 11 | <artifactId>stream</artifactId>
|
7 | 12 | <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> |
9 | 16 | <licenses>
|
10 | 17 | <license>
|
11 | 18 | <name>The Apache Software License, Version 2.0</name>
|
|
73 | 80 | </executions>
|
74 | 81 | </plugin>
|
75 | 82 |
|
| 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 | + |
76 | 96 | <plugin>
|
77 | 97 | <groupId>org.apache.maven.plugins</groupId>
|
78 | 98 | <artifactId>maven-surefire-plugin</artifactId>
|
|
116 | 136 | </execution>
|
117 | 137 | </executions>
|
118 | 138 | </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> |
119 | 165 | </plugins>
|
120 | 166 | </build>
|
121 | 167 |
|
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 | + |
| 172 | + </developer> |
| 173 | + <developer> |
| 174 | + <name>Chris Burroughs</name> |
| 175 | + |
| 176 | + </developer> |
| 177 | + </developers> |
134 | 178 |
|
| 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> |
135 | 184 | </project>
|
0 commit comments