Skip to content

Commit

Permalink
upgrade to spring boot 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkoperillo committed Jul 31, 2024
1 parent 847d803 commit 306d461
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.7</version>
<version>3.3.2</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>

Expand All @@ -30,12 +30,12 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<exclusion>
<!-- bloated dependency -->
<artifactId>tomcat-embed-el</artifactId>
<groupId>org.apache.tomcat.embed</groupId>
</exclusion>
</exclusions>
<artifactId>tomcat-embed-el</artifactId>
<groupId>org.apache.tomcat.embed</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -47,25 +47,27 @@
<exclusions>
<exclusion>
<!-- bloated dependency -->
<artifactId>txw2</artifactId>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>txw2</artifactId>
<groupId>org.glassfish.jaxb</groupId>
</exclusion>
</exclusions>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.mobile</groupId>
<artifactId>spring-mobile-device</artifactId>
<version>1.1.5.RELEASE</version>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.12.6</version>
</dependency>

<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.6.0</version>
<artifactId>jjwt-impl</artifactId>
<version>0.12.6</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.12.6</version>
<scope>runtime</scope>
</dependency>

<dependency>
Expand Down Expand Up @@ -141,5 +143,4 @@
</plugins>
</build>


</project>

0 comments on commit 306d461

Please sign in to comment.