Skip to content

Commit 4347955

Browse files
committed
upgrade spring to 5.3.18 in example projects for security
1 parent 98178ac commit 4347955

File tree

2 files changed

+21
-6
lines changed
  • example-projects

2 files changed

+21
-6
lines changed

example-projects/jersey-spring-example/pom.xml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
<maven.compiler.target>1.8</maven.compiler.target>
1515
<maven.compiler.source>1.8</maven.compiler.source>
1616
<jersey.version>2.29</jersey.version>
17-
<spring.version>5.1.5.RELEASE</spring.version>
17+
<spring.version>5.3.18</spring.version>
1818
</properties>
1919
<dependencies>
2020
<dependency>
2121
<groupId>nginx-clojure</groupId>
2222
<artifactId>nginx-jersey</artifactId>
23-
<version>0.1.6</version>
23+
<version>0.1.8</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>org.glassfish.jersey.core</groupId>
@@ -47,6 +47,21 @@
4747
<artifactId>spring-context</artifactId>
4848
<version>${spring.version}</version>
4949
</dependency>
50+
<dependency>
51+
<groupId>org.springframework</groupId>
52+
<artifactId>spring-beans</artifactId>
53+
<version>${spring.version}</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>org.springframework</groupId>
57+
<artifactId>spring-web</artifactId>
58+
<version>${spring.version}</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>org.springframework</groupId>
62+
<artifactId>spring-aop</artifactId>
63+
<version>${spring.version}</version>
64+
</dependency>
5065
<dependency>
5166
<groupId>jakarta.servlet</groupId>
5267
<artifactId>jakarta.servlet-api</artifactId>
@@ -61,7 +76,7 @@
6176
<dependency>
6277
<groupId>nginx-clojure</groupId>
6378
<artifactId>nginx-clojure-embed</artifactId>
64-
<version>0.5.1</version>
79+
<version>0.5.3</version>
6580
<scope>test</scope>
6681
</dependency>
6782
<dependency>

example-projects/spring-core-example/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313
<dependency>
1414
<groupId>nginx-clojure</groupId>
1515
<artifactId>nginx-clojure</artifactId>
16-
<version>0.5.1</version>
16+
<version>0.5.3</version>
1717
</dependency>
1818
<dependency>
1919
<groupId>org.springframework</groupId>
2020
<artifactId>spring-core</artifactId>
21-
<version>5.3.14</version>
21+
<version>5.3.18</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>org.springframework</groupId>
2525
<artifactId>spring-context</artifactId>
26-
<version>5.2.1.RELEASE</version>
26+
<version>5.3.18</version>
2727
</dependency>
2828
</dependencies>
2929
<build>

0 commit comments

Comments
 (0)