Skip to content
This repository was archived by the owner on May 3, 2019. It is now read-only.

Commit e63932e

Browse files
committed
Update POM for Sonatype OSS releases
1 parent 335fc36 commit e63932e

File tree

1 file changed

+41
-13
lines changed

1 file changed

+41
-13
lines changed

Diff for: pom.xml

+41-13
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,43 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5+
<parent>
6+
<groupId>org.sonatype.oss</groupId>
7+
<artifactId>oss-parent</artifactId>
8+
<version>7</version>
9+
</parent>
10+
511
<groupId>com.proofpoint.hive</groupId>
612
<artifactId>hive-serde</artifactId>
713
<version>1.0-SNAPSHOT</version>
814
<packaging>jar</packaging>
915

1016
<name>hive-serde</name>
17+
<description>JSON Serde for Hive</description>
1118
<url>https://github.com/proofpoint/hive-serde</url>
1219

20+
<licenses>
21+
<license>
22+
<name>Apache License 2.0</name>
23+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
24+
<distribution>repo</distribution>
25+
</license>
26+
</licenses>
27+
28+
<developers>
29+
<developer>
30+
<id>electrum</id>
31+
<name>David Phillips</name>
32+
<email>[email protected]</email>
33+
</developer>
34+
</developers>
35+
1336
<scm>
1437
<connection>scm:git:git://github.com/proofpoint/hive-serde.git</connection>
1538
<developerConnection>scm:git:[email protected]:proofpoint/hive-serde.git</developerConnection>
1639
<url>https://github.com/proofpoint/hive-serde</url>
1740
</scm>
1841

19-
<distributionManagement>
20-
<snapshotRepository>
21-
<id>sonatype-nexus-snapshots</id>
22-
<name>Sonatype Nexus Snapshots</name>
23-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
24-
</snapshotRepository>
25-
<repository>
26-
<id>sonatype-nexus-staging</id>
27-
<name>Nexus Release Repository</name>
28-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
29-
</repository>
30-
</distributionManagement>
31-
3242
<properties>
3343
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3444
</properties>
@@ -146,6 +156,24 @@
146156
</execution>
147157
</executions>
148158
</plugin>
159+
<plugin>
160+
<groupId>org.apache.maven.plugins</groupId>
161+
<artifactId>maven-release-plugin</artifactId>
162+
<version>2.2.1</version>
163+
<configuration>
164+
<pushChanges>false</pushChanges>
165+
<localCheckout>true</localCheckout>
166+
<tagNameFormat>@{project.version}</tagNameFormat>
167+
</configuration>
168+
</plugin>
169+
<plugin>
170+
<groupId>org.apache.maven.plugins</groupId>
171+
<artifactId>maven-gpg-plugin</artifactId>
172+
<version>1.4</version>
173+
<configuration>
174+
<useAgent>true</useAgent>
175+
</configuration>
176+
</plugin>
149177
</plugins>
150178
</build>
151179
</project>

0 commit comments

Comments
 (0)