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

Commit 6b2f797

Browse files
authored
Merge pull request #1209 from stormpath/issue/1202
Issue/1202
2 parents ac51144 + c9e49ce commit 6b2f797

File tree

2 files changed

+88
-30
lines changed

2 files changed

+88
-30
lines changed

bom/pom.xml

Lines changed: 76 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,110 +2,162 @@
22
<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">
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-
115
<groupId>com.stormpath.sdk</groupId>
126
<artifactId>stormpath-bom</artifactId>
137
<name>Stormpath Java SDK :: BOM</name>
8+
<description>Stormpath Bill of Materials</description>
149
<packaging>pom</packaging>
1510
<version>1.3.0-SNAPSHOT</version>
1611

12+
<url>https://github.com/stormpath/stormpath-sdk-java</url>
13+
<organization>
14+
<name>Stormpath</name>
15+
<url>http://stormpath.com</url>
16+
</organization>
17+
18+
<licenses>
19+
<license>
20+
<name>Apache License, Version 2.0</name>
21+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
22+
<distribution>repo</distribution>
23+
</license>
24+
</licenses>
25+
26+
<scm>
27+
<connection>scm:git:[email protected]:stormpath/stormpath-sdk-java.git</connection>
28+
<developerConnection>scm:git:[email protected]:stormpath/stormpath-sdk-java.git</developerConnection>
29+
<url>[email protected]:stormpath/stormpath-sdk-java.git</url>
30+
<tag>HEAD</tag>
31+
</scm>
32+
<issueManagement>
33+
<system>GitHub</system>
34+
<url>https://github.com/stormpath/stormpath-sdk-java/issues</url>
35+
</issueManagement>
36+
<developers>
37+
<developer>
38+
<id>jsdk-team</id>
39+
<name>Java SDK Team</name>
40+
<email>[email protected]</email>
41+
<url>http://stormpath.com</url>
42+
<timezone>-8</timezone>
43+
<organization>Stormpath, Inc.</organization>
44+
<organizationUrl>http://www.stormpath.com</organizationUrl>
45+
</developer>
46+
</developers>
47+
48+
<properties>
49+
<stormpath.version>1.3.0-SNAPSHOT</stormpath.version>
50+
</properties>
51+
1752
<dependencyManagement>
1853
<dependencies>
1954
<dependency>
2055
<groupId>com.stormpath.sdk</groupId>
2156
<artifactId>stormpath-sdk-api</artifactId>
22-
<version>${project.version}</version>
57+
<version>${stormpath.version}</version>
2358
</dependency>
2459
<dependency>
2560
<groupId>com.stormpath.sdk</groupId>
2661
<artifactId>stormpath-sdk-impl</artifactId>
27-
<version>${project.version}</version>
62+
<version>${stormpath.version}</version>
2863
</dependency>
2964
<dependency>
3065
<groupId>com.stormpath.sdk</groupId>
3166
<artifactId>stormpath-sdk-oauth</artifactId>
32-
<version>${project.version}</version>
67+
<version>${stormpath.version}</version>
3368
</dependency>
3469
<dependency>
3570
<groupId>com.stormpath.sdk</groupId>
3671
<artifactId>stormpath-sdk-servlet</artifactId>
37-
<version>${project.version}</version>
72+
<version>${stormpath.version}</version>
3873
</dependency>
3974
<dependency>
4075
<groupId>com.stormpath.sdk</groupId>
4176
<artifactId>stormpath-sdk-httpclient</artifactId>
42-
<version>${project.version}</version>
77+
<version>${stormpath.version}</version>
4378
</dependency>
4479
<dependency>
4580
<groupId>com.stormpath.sdk</groupId>
4681
<artifactId>stormpath-servlet-plugin</artifactId>
47-
<version>${project.version}</version>
82+
<version>${stormpath.version}</version>
4883
</dependency>
4984
<dependency>
5085
<groupId>com.stormpath.sdk</groupId>
5186
<artifactId>stormpath-sdk-zuul</artifactId>
52-
<version>${project.version}</version>
87+
<version>${stormpath.version}</version>
5388
</dependency>
5489
<dependency>
5590
<groupId>com.stormpath.spring</groupId>
5691
<artifactId>stormpath-spring</artifactId>
57-
<version>${project.version}</version>
92+
<version>${stormpath.version}</version>
5893
</dependency>
5994
<dependency>
6095
<groupId>com.stormpath.spring</groupId>
6196
<artifactId>stormpath-spring-security</artifactId>
62-
<version>${project.version}</version>
97+
<version>${stormpath.version}</version>
6398
</dependency>
6499
<dependency>
65100
<groupId>com.stormpath.spring</groupId>
66101
<artifactId>stormpath-spring-security-webmvc</artifactId>
67-
<version>${project.version}</version>
102+
<version>${stormpath.version}</version>
68103
</dependency>
69104
<dependency>
70105
<groupId>com.stormpath.spring</groupId>
71106
<artifactId>stormpath-spring-webmvc</artifactId>
72-
<version>${project.version}</version>
107+
<version>${stormpath.version}</version>
73108
</dependency>
74109
<dependency>
75110
<groupId>com.stormpath.spring</groupId>
76111
<artifactId>stormpath-spring-boot-starter</artifactId>
77-
<version>${project.version}</version>
112+
<version>${stormpath.version}</version>
78113
</dependency>
79114
<dependency>
80115
<groupId>com.stormpath.spring</groupId>
81116
<artifactId>stormpath-webmvc-spring-boot-starter</artifactId>
82-
<version>${project.version}</version>
117+
<version>${stormpath.version}</version>
83118
</dependency>
84119
<dependency>
85120
<groupId>com.stormpath.spring</groupId>
86121
<artifactId>stormpath-thymeleaf-spring-boot-starter</artifactId>
87-
<version>${project.version}</version>
122+
<version>${stormpath.version}</version>
88123
</dependency>
89124
<dependency>
90125
<groupId>com.stormpath.spring</groupId>
91126
<artifactId>stormpath-spring-security-spring-boot-starter</artifactId>
92-
<version>${project.version}</version>
127+
<version>${stormpath.version}</version>
93128
</dependency>
94129
<dependency>
95130
<groupId>com.stormpath.spring</groupId>
96131
<artifactId>stormpath-spring-security-webmvc-spring-boot-starter</artifactId>
97-
<version>${project.version}</version>
132+
<version>${stormpath.version}</version>
98133
</dependency>
99134
<dependency>
100135
<groupId>com.stormpath.spring</groupId>
101136
<artifactId>stormpath-default-spring-boot-starter</artifactId>
102-
<version>${project.version}</version>
137+
<version>${stormpath.version}</version>
103138
</dependency>
104139
<dependency>
105140
<groupId>com.stormpath.spring</groupId>
106141
<artifactId>stormpath-zuul-spring-cloud-starter</artifactId>
107-
<version>${project.version}</version>
142+
<version>${stormpath.version}</version>
108143
</dependency>
109144
</dependencies>
110145
</dependencyManagement>
146+
147+
<build>
148+
<plugins>
149+
<plugin>
150+
<groupId>org.sonatype.plugins</groupId>
151+
<artifactId>nexus-staging-maven-plugin</artifactId>
152+
<version>1.6.7</version>
153+
<extensions>true</extensions>
154+
<configuration>
155+
<serverId>sonatype-nexus-staging</serverId>
156+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
157+
<skipStagingRepositoryClose>true</skipStagingRepositoryClose>
158+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
159+
</configuration>
160+
</plugin>
161+
</plugins>
162+
</build>
111163
</project>

pom.xml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@
1717
<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">
1818
<modelVersion>4.0.0</modelVersion>
1919

20-
<parent>
21-
<groupId>org.sonatype.oss</groupId>
22-
<artifactId>oss-parent</artifactId>
23-
<version>7</version>
24-
</parent>
25-
2620
<groupId>com.stormpath.sdk</groupId>
2721
<artifactId>stormpath-sdk-root</artifactId>
2822
<version>1.3.0-SNAPSHOT</version>
@@ -668,6 +662,18 @@
668662
</execution>
669663
</executions>
670664
</plugin>
665+
<plugin>
666+
<groupId>org.sonatype.plugins</groupId>
667+
<artifactId>nexus-staging-maven-plugin</artifactId>
668+
<version>1.6.7</version>
669+
<extensions>true</extensions>
670+
<configuration>
671+
<serverId>sonatype-nexus-staging</serverId>
672+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
673+
<skipStagingRepositoryClose>true</skipStagingRepositoryClose>
674+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
675+
</configuration>
676+
</plugin>
671677
<plugin>
672678
<groupId>org.apache.maven.plugins</groupId>
673679
<artifactId>maven-release-plugin</artifactId>

0 commit comments

Comments
 (0)