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 >com.stormpath.sdk</groupId >
7- <artifactId >stormpath-sdk-root</artifactId >
8- <version >1.4.0-SNAPSHOT</version >
9- <relativePath >../pom.xml</relativePath >
10- </parent >
11-
125 <groupId >com.stormpath.sdk</groupId >
136 <artifactId >stormpath-bom</artifactId >
147 <name >Stormpath Java SDK :: BOM</name >
144137 <artifactId >stormpath-zuul-spring-cloud-starter</artifactId >
145138 <version >1.4.0-SNAPSHOT</version >
146139 </dependency >
140+ <!--
141+ Temporary fix to ensure correct version of Spring Security is in use with the Stormpath SDK
142+ This will be removed when Spring Boot 1.5 is released.
143+ -->
144+ <dependency >
145+ <groupId >org.springframework.security</groupId >
146+ <artifactId >spring-security-bom</artifactId >
147+ <version >4.2.1.RELEASE</version >
148+ <type >pom</type >
149+ <scope >import</scope >
150+ </dependency >
147151 </dependencies >
148152 </dependencyManagement >
149- </project >
153+
154+ <profiles >
155+ <profile >
156+ <id >stormpath-signature</id >
157+ <build >
158+ <plugins >
159+ <plugin >
160+ <groupId >org.sonatype.plugins</groupId >
161+ <artifactId >nexus-staging-maven-plugin</artifactId >
162+ <version >1.6.7</version >
163+ <extensions >true</extensions >
164+ <configuration >
165+ <serverId >sonatype-nexus-staging</serverId >
166+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
167+ <skipStagingRepositoryClose >true</skipStagingRepositoryClose >
168+ <autoReleaseAfterClose >false</autoReleaseAfterClose >
169+ </configuration >
170+ </plugin >
171+ <plugin >
172+ <groupId >org.apache.maven.plugins</groupId >
173+ <artifactId >maven-gpg-plugin</artifactId >
174+ <version >1.4</version >
175+ <executions >
176+ <execution >
177+ <id >sign-artifacts</id >
178+ <phase >verify</phase >
179+ <goals >
180+ <goal >sign</goal >
181+ </goals >
182+ </execution >
183+ </executions >
184+ </plugin >
185+ </plugins >
186+ </build >
187+ </profile >
188+ </profiles >
189+
190+ </project >
0 commit comments