Skip to content

Commit

Permalink
Merge pull request #261 from Checkmarx/other/benalvo/upgrade-spring-w…
Browse files Browse the repository at this point in the history
…ebmvc-version

upgrade spring-webmvc version to 6.2.0 (AST-76240, AST-76245)
  • Loading branch information
AlvoBen authored Dec 12, 2024
2 parents 0c1e7d3 + 54c42c1 commit 3cb647e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
8 changes: 7 additions & 1 deletion checkmarx-ast-teamcity-plugin-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,17 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.1.0</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.39</version>
<version>6.2.0</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,9 @@ private ActionErrors validateForm(final HttpServletRequest request) {

return errors;
}

@Override
protected ModelAndView handleRequestInternal(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws Exception {
return null;
}
}

0 comments on commit 3cb647e

Please sign in to comment.