Skip to content

Commit f4460a0

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 0e9b7b2 + fd5037e commit f4460a0

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

spring-security-login-and-registration/pom.xml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.springframework.boot</groupId>
1212
<artifactId>spring-boot-starter-parent</artifactId>
13-
<version>1.2.4.RELEASE</version>
13+
<version>1.2.5.RELEASE</version>
1414
</parent>
1515

1616
<dependencies>
@@ -29,6 +29,18 @@
2929
<artifactId>spring-security-config</artifactId>
3030
</dependency>
3131

32+
<!-- For Spring Boot when running in non-embedded Tomcat -->
33+
<dependency>
34+
<groupId>org.springframework.boot</groupId>
35+
<artifactId>spring-boot-starter-tomcat</artifactId>
36+
<scope>provided</scope>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.apache.tomcat.embed</groupId>
40+
<artifactId>tomcat-embed-websocket</artifactId>
41+
<scope>provided</scope>
42+
</dependency>
43+
3244
<!-- Servlet -->
3345
<dependency>
3446
<groupId>javax.servlet</groupId>
@@ -52,7 +64,7 @@
5264
<artifactId>el-api</artifactId>
5365
<version>2.2</version>
5466
</dependency>
55-
67+
5668
<dependency>
5769
<groupId>org.springframework</groupId>
5870
<artifactId>spring-test</artifactId>
@@ -65,8 +77,7 @@
6577
<artifactId>passay</artifactId>
6678
<version>1.0</version>
6779
</dependency>
68-
69-
80+
7081
<!-- Spring Data JPA dependencies -->
7182
<dependency>
7283
<groupId>org.springframework.data</groupId>

spring-security-rest-full/.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</classpathentry>
3737
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
3838
<attributes>
39-
<attribute name="owner.project.facets" value="java"/>
39+
<attribute name="maven.pomderived" value="true"/>
4040
</attributes>
4141
</classpathentry>
4242
<classpathentry kind="output" path="target/classes"/>

0 commit comments

Comments
 (0)