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

Commit 51962b8

Browse files
committed
Updated Tomcat to latest version across the SDK
1 parent 65824a5 commit 51962b8

6 files changed

Lines changed: 5 additions & 48 deletions

File tree

  • examples
  • extensions/spring/boot
    • stormpath-spring-security-webmvc-spring-boot-starter
    • stormpath-webmvc-spring-boot-starter

examples/servlet/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@
116116
<configuration>
117117
<skip>${skipITs}</skip>
118118
<container>
119-
<containerId>tomcat7x</containerId>
119+
<containerId>tomcat8x</containerId>
120120
<zipUrlInstaller>
121121
<url>
122-
http://repo1.maven.org/maven2/org/apache/tomcat/tomcat/7.0.69/tomcat-7.0.69.zip
122+
http://repo1.maven.org/maven2/org/apache/tomcat/tomcat/8.5.9/tomcat-8.5.9.zip
123123
</url>
124124
</zipUrlInstaller>
125125
</container>

examples/spring-security-spring-boot-webmvc-bare-bones/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3939
<slf4j.version>1.7.21</slf4j.version>
4040
<spring.boot.version>1.4.0.RELEASE</spring.boot.version>
41-
<tomcat.version>7.0.59</tomcat.version>
41+
<tomcat.version>8.5.9</tomcat.version>
4242
</properties>
4343

4444
<dependencies>

examples/spring-security-spring-boot-webmvc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4040
<slf4j.version>1.7.21</slf4j.version>
4141
<spring.boot.version>1.4.0.RELEASE</spring.boot.version>
42-
<tomcat.version>7.0.59</tomcat.version>
42+
<tomcat.version>8.5.9</tomcat.version>
4343
</properties>
4444

4545
<dependencies>

examples/spring-security-webmvc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<slf4j.version>1.7.21</slf4j.version>
4242
<spring.version>4.3.2.RELEASE</spring.version>
4343
<spring.security.version>4.1.2.RELEASE</spring.security.version>
44-
<tomcat.version>7.0.59</tomcat.version>
44+
<tomcat.version>8.5.9</tomcat.version>
4545
</properties>
4646

4747
<dependencies>

extensions/spring/boot/stormpath-spring-security-webmvc-spring-boot-starter/pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@
2727
<name>Stormpath :: Spring :: Boot :: Spring Security :: Web MVC Starter</name>
2828
<description>Spring Boot WebMVC Starter for Stormpath with Spring Security</description>
2929

30-
<properties>
31-
<tomcat.version>8.5.0</tomcat.version>
32-
</properties>
33-
3430
<dependencies>
3531

3632
<dependency>
@@ -58,24 +54,6 @@
5854
<artifactId>stormpath-sdk-httpclient</artifactId>
5955
<scope>runtime</scope>
6056
</dependency>
61-
62-
<!--
63-
We need to force Tomcat 7 for the ITs to run in Java 6.
64-
Otherwise Tomcat 8.0.15 is used and it throws:
65-
javax/servlet/ServletContext : Unsupported major.minor version 51.0
66-
-->
67-
<dependency>
68-
<groupId>org.apache.tomcat.embed</groupId>
69-
<artifactId>tomcat-embed-core</artifactId>
70-
<version>${tomcat.version}</version>
71-
<scope>test</scope>
72-
</dependency>
73-
<dependency>
74-
<groupId>org.apache.tomcat.embed</groupId>
75-
<artifactId>tomcat-embed-el</artifactId>
76-
<version>${tomcat.version}</version>
77-
<scope>test</scope>
78-
</dependency>
7957
<dependency>
8058
<groupId>com.stormpath.spring</groupId>
8159
<artifactId>stormpath-spring</artifactId>

extensions/spring/boot/stormpath-webmvc-spring-boot-starter/pom.xml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@
2727
<name>Stormpath :: Spring :: Boot :: Web MVC</name>
2828
<description>Stormpath WebMVC Spring Boot Starter</description>
2929

30-
<properties>
31-
<tomcat.version>7.0.59</tomcat.version>
32-
</properties>
33-
3430
<dependencies>
3531

3632
<dependency>
@@ -75,23 +71,6 @@
7571
<artifactId>javax.servlet-api</artifactId>
7672
</dependency>
7773

78-
<!--
79-
We need to force Tomcat 7 for the ITs to run in Java 6.
80-
Otherwise Tomcat 8.0.15 is used and it throws:
81-
javax/servlet/ServletContext : Unsupported major.minor version 51.0
82-
-->
83-
<dependency>
84-
<groupId>org.apache.tomcat.embed</groupId>
85-
<artifactId>tomcat-embed-core</artifactId>
86-
<version>${tomcat.version}</version>
87-
<scope>test</scope>
88-
</dependency>
89-
<dependency>
90-
<groupId>org.apache.tomcat.embed</groupId>
91-
<artifactId>tomcat-embed-el</artifactId>
92-
<version>${tomcat.version}</version>
93-
<scope>test</scope>
94-
</dependency>
9574
<dependency>
9675
<groupId>com.stormpath.spring</groupId>
9776
<artifactId>stormpath-spring</artifactId>

0 commit comments

Comments
 (0)