Skip to content
This repository has been archived by the owner on Dec 12, 2018. It is now read-only.

Commit

Permalink
updated bom to use parent to avoid putting build specifics in it
Browse files Browse the repository at this point in the history
  • Loading branch information
dogeared committed Jan 12, 2017
1 parent c56039e commit 57f4fac
Showing 1 changed file with 7 additions and 17 deletions.
24 changes: 7 additions & 17 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.stormpath.sdk</groupId>
<artifactId>stormpath-sdk-root</artifactId>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>com.stormpath.sdk</groupId>
<artifactId>stormpath-bom</artifactId>
<name>Stormpath Java SDK :: BOM</name>
Expand Down Expand Up @@ -139,21 +146,4 @@
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<skipStagingRepositoryClose>true</skipStagingRepositoryClose>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 57f4fac

Please sign in to comment.