File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed
spring-grpc-build-dependencies
spring-grpc-core/src/main/java/org/springframework/grpc/server/security Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 8181 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
8282 <java .version>17</java .version>
8383 <!-- internal dependencies -->
84- <spring-boot .version>4.0.0-RC2 </spring-boot .version>
85- <jackson .version>2.20.0 </jackson .version>
86- <junit .version>5.13.4 </junit .version>
87- <assertj .version>3.27.4 </assertj .version>
84+ <spring-boot .version>4.0.0</spring-boot .version>
85+ <jackson .version>2.20.1 </jackson .version>
86+ <junit .version>6.0.1 </junit .version>
87+ <assertj .version>3.27.6 </assertj .version>
8888 <awaitility .version>4.3.0</awaitility .version>
8989 <mockito .version>5.20.0</mockito .version>
9090 <!-- documentation dependencies -->
Original file line number Diff line number Diff line change 4949 </licenses >
5050
5151 <properties >
52- <spring-framework .version>7.0.0-M9 </spring-framework .version>
53- <spring-security .version>7.0.0-M3 </spring-security .version>
54- <micrometer .version>1.16.0-M3 </micrometer .version>
55- <netty .version>4.2.6 .Final</netty .version>
52+ <spring-framework .version>7.0.1 </spring-framework .version>
53+ <spring-security .version>7.0.0</spring-security .version>
54+ <micrometer .version>1.16.0</micrometer .version>
55+ <netty .version>4.2.7 .Final</netty .version>
5656 <spring-javaformat-maven-plugin .version>0.0.43</spring-javaformat-maven-plugin .version>
5757 <maven-deploy-plugin .version>3.1.4</maven-deploy-plugin .version>
5858 </properties >
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ private ApplicationContext getContext() {
102102 }
103103
104104 @ Override
105- protected AuthenticationProcessInterceptor performBuild () throws Exception {
105+ protected AuthenticationProcessInterceptor performBuild () {
106106 if (this .authenticationManager != null ) {
107107 setSharedObject (AuthenticationManager .class , this .authenticationManager );
108108 }
@@ -121,7 +121,7 @@ protected AuthenticationProcessInterceptor performBuild() throws Exception {
121121 new CompositeAuthenticationExtractor (this .authenticationExtractors ), this .authorizationManager );
122122 }
123123
124- private AuthenticationManager getAuthenticationManager () throws Exception {
124+ private AuthenticationManager getAuthenticationManager () {
125125 return getAuthenticationRegistry ().getOrBuild ();
126126 }
127127
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public HttpBasicConfigurer<H> userDetailsService(UserDetailsService userDetailsS
4343 }
4444
4545 @ Override
46- public void configure (H builder ) throws Exception {
46+ public void configure (H builder ) {
4747 UserDetailsService userDetailsService = this .userDetailsService ;
4848 if (userDetailsService == null ) {
4949 userDetailsService = this .authenticationManagerBuilder .getDefaultUserDetailsService ();
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public PreAuthConfigurer<H> userDetailsService(UserDetailsService userDetailsSer
4545 }
4646
4747 @ Override
48- public void configure (H builder ) throws Exception {
48+ public void configure (H builder ) {
4949 PreAuthenticatedAuthenticationProvider provider = new PreAuthenticatedAuthenticationProvider ();
5050 UserDetailsService userDetailsService = this .userDetailsService ;
5151 if (userDetailsService == null ) {
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ public RequestMapperConfigurer(ApplicationContext context) throws Exception {
5959 }
6060
6161 @ Override
62- public void configure (GrpcSecurity builder ) throws Exception {
62+ public void configure (GrpcSecurity builder ) {
6363 builder .authorizationManager (new RequestMapperAuthorizationManager (this .authorizedCalls , this .publisher ));
6464 }
6565
You can’t perform that action at this time.
0 commit comments