|
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 |
|
| 5 | + <parent> |
| 6 | + <groupId>org.sonatype.oss</groupId> |
| 7 | + <artifactId>oss-parent</artifactId> |
| 8 | + <version>7</version> |
| 9 | + </parent> |
| 10 | + |
5 | 11 | <groupId>com.proofpoint.hive</groupId>
|
6 | 12 | <artifactId>hive-serde</artifactId>
|
7 | 13 | <version>1.0-SNAPSHOT</version>
|
8 | 14 | <packaging>jar</packaging>
|
9 | 15 |
|
10 | 16 | <name>hive-serde</name>
|
| 17 | + <description>JSON Serde for Hive</description> |
11 | 18 | <url>https://github.com/proofpoint/hive-serde</url>
|
12 | 19 |
|
| 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 | + |
| 33 | + </developer> |
| 34 | + </developers> |
| 35 | + |
13 | 36 | <scm>
|
14 | 37 | <connection>scm:git:git://github.com/proofpoint/hive-serde.git</connection>
|
15 | 38 | < developerConnection>scm:git: [email protected]:proofpoint/hive-serde.git</ developerConnection>
|
16 | 39 | <url>https://github.com/proofpoint/hive-serde</url>
|
17 | 40 | </scm>
|
18 | 41 |
|
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 |
| - |
32 | 42 | <properties>
|
33 | 43 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
34 | 44 | </properties>
|
|
146 | 156 | </execution>
|
147 | 157 | </executions>
|
148 | 158 | </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> |
149 | 177 | </plugins>
|
150 | 178 | </build>
|
151 | 179 | </project>
|
0 commit comments