File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
jdk_21_maven/cs/rest-gui/webgoat
src/main/java/org/owasp/webgoat/container Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 109109
110110 <dependencyManagement >
111111 <dependencies >
112-
113-
114112 <dependency >
115113 <groupId >org.apache.commons</groupId >
116114 <artifactId >commons-exec</artifactId >
221219 </dependencies >
222220 </dependencyManagement >
223221 <dependencies >
222+ <!-- MODIFIED-->
223+ <dependency >
224+ <groupId >org.springdoc</groupId >
225+ <artifactId >springdoc-openapi-starter-webmvc-ui</artifactId >
226+ <version >2.6.0</version >
227+ </dependency >
228+ <!-- MODIFIED-->
224229 <dependency >
225230 <groupId >org.apache.commons</groupId >
226231 <artifactId >commons-exec</artifactId >
Original file line number Diff line number Diff line change @@ -66,7 +66,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
6666 "/plugins/**" ,
6767 "/registration" ,
6868 "/register.mvc" ,
69- "/actuator/**" )
69+ "/actuator/**" ,
70+ "/swagger-ui.html" , "/swagger-ui/**" , "/v3/api-docs/**" )
7071 .permitAll ()
7172 .anyRequest ()
7273 .authenticated ())
You can’t perform that action at this time.
0 commit comments