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

Commit 0c5d387

Browse files
committed
Updates per feedback from spring initializr team. Refactored BOM. Got rid of sonatype parent.
1 parent 18149e4 commit 0c5d387

File tree

2 files changed

+48
-30
lines changed

2 files changed

+48
-30
lines changed

bom/pom.xml

Lines changed: 48 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,109 +2,133 @@
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+
37+
<properties>
38+
<stormpath.version>1.3.0-SNAPSHOT</stormpath.version>
39+
</properties>
40+
1741
<dependencyManagement>
1842
<dependencies>
1943
<dependency>
2044
<groupId>com.stormpath.sdk</groupId>
2145
<artifactId>stormpath-sdk-api</artifactId>
22-
<version>${project.version}</version>
46+
<version>${stormpath.version}</version>
2347
</dependency>
2448
<dependency>
2549
<groupId>com.stormpath.sdk</groupId>
2650
<artifactId>stormpath-sdk-impl</artifactId>
27-
<version>${project.version}</version>
51+
<version>${stormpath.version}</version>
2852
</dependency>
2953
<dependency>
3054
<groupId>com.stormpath.sdk</groupId>
3155
<artifactId>stormpath-sdk-oauth</artifactId>
32-
<version>${project.version}</version>
56+
<version>${stormpath.version}</version>
3357
</dependency>
3458
<dependency>
3559
<groupId>com.stormpath.sdk</groupId>
3660
<artifactId>stormpath-sdk-servlet</artifactId>
37-
<version>${project.version}</version>
61+
<version>${stormpath.version}</version>
3862
</dependency>
3963
<dependency>
4064
<groupId>com.stormpath.sdk</groupId>
4165
<artifactId>stormpath-sdk-httpclient</artifactId>
42-
<version>${project.version}</version>
66+
<version>${stormpath.version}</version>
4367
</dependency>
4468
<dependency>
4569
<groupId>com.stormpath.sdk</groupId>
4670
<artifactId>stormpath-servlet-plugin</artifactId>
47-
<version>${project.version}</version>
71+
<version>${stormpath.version}</version>
4872
</dependency>
4973
<dependency>
5074
<groupId>com.stormpath.sdk</groupId>
5175
<artifactId>stormpath-sdk-zuul</artifactId>
52-
<version>${project.version}</version>
76+
<version>${stormpath.version}</version>
5377
</dependency>
5478
<dependency>
5579
<groupId>com.stormpath.spring</groupId>
5680
<artifactId>stormpath-spring</artifactId>
57-
<version>${project.version}</version>
81+
<version>${stormpath.version}</version>
5882
</dependency>
5983
<dependency>
6084
<groupId>com.stormpath.spring</groupId>
6185
<artifactId>stormpath-spring-security</artifactId>
62-
<version>${project.version}</version>
86+
<version>${stormpath.version}</version>
6387
</dependency>
6488
<dependency>
6589
<groupId>com.stormpath.spring</groupId>
6690
<artifactId>stormpath-spring-security-webmvc</artifactId>
67-
<version>${project.version}</version>
91+
<version>${stormpath.version}</version>
6892
</dependency>
6993
<dependency>
7094
<groupId>com.stormpath.spring</groupId>
7195
<artifactId>stormpath-spring-webmvc</artifactId>
72-
<version>${project.version}</version>
96+
<version>${stormpath.version}</version>
7397
</dependency>
7498
<dependency>
7599
<groupId>com.stormpath.spring</groupId>
76100
<artifactId>stormpath-spring-boot-starter</artifactId>
77-
<version>${project.version}</version>
101+
<version>${stormpath.version}</version>
78102
</dependency>
79103
<dependency>
80104
<groupId>com.stormpath.spring</groupId>
81105
<artifactId>stormpath-webmvc-spring-boot-starter</artifactId>
82-
<version>${project.version}</version>
106+
<version>${stormpath.version}</version>
83107
</dependency>
84108
<dependency>
85109
<groupId>com.stormpath.spring</groupId>
86110
<artifactId>stormpath-thymeleaf-spring-boot-starter</artifactId>
87-
<version>${project.version}</version>
111+
<version>${stormpath.version}</version>
88112
</dependency>
89113
<dependency>
90114
<groupId>com.stormpath.spring</groupId>
91115
<artifactId>stormpath-spring-security-spring-boot-starter</artifactId>
92-
<version>${project.version}</version>
116+
<version>${stormpath.version}</version>
93117
</dependency>
94118
<dependency>
95119
<groupId>com.stormpath.spring</groupId>
96120
<artifactId>stormpath-spring-security-webmvc-spring-boot-starter</artifactId>
97-
<version>${project.version}</version>
121+
<version>${stormpath.version}</version>
98122
</dependency>
99123
<dependency>
100124
<groupId>com.stormpath.spring</groupId>
101125
<artifactId>stormpath-default-spring-boot-starter</artifactId>
102-
<version>${project.version}</version>
126+
<version>${stormpath.version}</version>
103127
</dependency>
104128
<dependency>
105129
<groupId>com.stormpath.spring</groupId>
106130
<artifactId>stormpath-zuul-spring-cloud-starter</artifactId>
107-
<version>${project.version}</version>
131+
<version>${stormpath.version}</version>
108132
</dependency>
109133
</dependencies>
110134
</dependencyManagement>

pom.xml

Lines changed: 0 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>

0 commit comments

Comments
 (0)