Skip to content

Commit

Permalink
Updates and changes required by sonatype to publish/snapshot.
Browse files Browse the repository at this point in the history
  • Loading branch information
childsb committed Jan 21, 2015
1 parent 3ce041d commit 3b19092
Showing 1 changed file with 82 additions and 7 deletions.
89 changes: 82 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,47 @@
features -->
<version>2.3.13</version>
<name>glusterfs-hadoop</name>
<description>hadoop filesystem impl for glusterfs</description>
<licenses>
<license>
<name>apache</name>
</license>
</licenses>
<scm>
<url>git://forge.gluster.org/hadoop/glusterfs-hadoop.git</url>
</scm>
<url>http://maven.apache.org</url>
<developers>
<developer>
<id>bchilds</id>
<name>bradley childs</name>
<email>[email protected]</email>
<organization>red hat</organization>
<organizationUrl>http://www.redhat.com</organizationUrl>
<roles>
<role>Dev</role>

</roles>
<timezone>-6</timezone>
</developer>
</developers>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>maven-s3-release-repo</id>
<name>S3 Release Repository</name>
<url>s3://rhbd/maven/repositories/internal</url>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<dependencies>

<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-yarn-server-nodemanager</artifactId>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-yarn-server-nodemanager</artifactId>
<version>2.3.0</version>
</dependency>

Expand Down Expand Up @@ -79,7 +105,43 @@


<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -90,7 +152,20 @@
<target>1.5</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
Expand Down

0 comments on commit 3b19092

Please sign in to comment.