This repository was archived by the owner on Sep 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +14
-14
lines changed
ch-covidcertificate-backend-delivery
ch-covidcertificate-backend-delivery-data
ch-covidcertificate-backend-delivery-ws
src/main/java/ch/admin/bag/covidcertificate/backend/delivery/ws/config Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 3636 <dependency >
3737 <groupId >org.postgresql</groupId >
3838 <artifactId >postgresql</artifactId >
39- <version >42.5.0 </version >
39+ <version >42.5.1 </version >
4040 </dependency >
4141 <dependency >
4242 <groupId >org.flywaydb</groupId >
Original file line number Diff line number Diff line change 100100 <dependency >
101101 <groupId >com.eatthepath</groupId >
102102 <artifactId >pushy</artifactId >
103- <version >0.15.1 </version >
103+ <version >0.15.2 </version >
104104 </dependency >
105105
106106 <!-- shedlock -->
Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ public class JwtConfig extends WebSecurityConfigurerAdapter {
3838 @ Value ("${ws.jwt.openid-configuration-url}" )
3939 private String url ;
4040
41- @ Value ("${ws.jwt.jwks-json-key:jwks_uri }" )
41+ @ Value ("${ws.jwt.jwks-json-key}" )
4242 private String jwksUriJsonKey ;
43- @ Value ("${ws.jwt.verification.resource-access-path:resource_access }" )
43+ @ Value ("${ws.jwt.verification.resource-access-path}" )
4444 private String resourceAccessPath ;
45- @ Value ("${ws.jwt.verification.certificate-creator -role:certificatecreator }" )
46- private String certificateCreatorRole ;
47- @ Value ("${ws.jwt.verification.role-path:/ch-covidcertificate-backend-delivery-ws/roles }" )
45+ @ Value ("${ws.jwt.verification.certificate-delivery -role}" )
46+ private String certificateDeliveryRole ;
47+ @ Value ("${ws.jwt.verification.role-path}" )
4848 private String rolePath ;
4949
5050 @ Override
@@ -69,7 +69,7 @@ protected void configure(HttpSecurity http) throws Exception {
6969
7070 @ Bean
7171 public DeliveryJWTValidator jwtValidator () {
72- return new DeliveryJWTValidator (resourceAccessPath , rolePath , certificateCreatorRole );
72+ return new DeliveryJWTValidator (resourceAccessPath , rolePath , certificateDeliveryRole );
7373 }
7474
7575 @ Bean
Original file line number Diff line number Diff line change 1616 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
1717 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
1818
19- <spring-boot-version >2.7.5 </spring-boot-version >
19+ <spring-boot-version >2.7.8 </spring-boot-version >
2020 <jackson-version >2.11.1</jackson-version >
2121 <jsonwebtoken-version >0.11.5</jsonwebtoken-version >
2222 <testcontainers-version >1.17.6</testcontainers-version >
23- <shedlock .version>4.42 .0</shedlock .version>
24- <spring-cloud-sleuth-version >3.1.5 </spring-cloud-sleuth-version >
23+ <shedlock .version>4.44 .0</shedlock .version>
24+ <spring-cloud-sleuth-version >3.1.6 </spring-cloud-sleuth-version >
2525
2626 <itCoverageAgent />
2727
6565 <dependency >
6666 <groupId >org.junit.jupiter</groupId >
6767 <artifactId >junit-jupiter-api</artifactId >
68- <version >5.9.1 </version >
68+ <version >5.9.2 </version >
6969 <scope >test</scope >
7070 </dependency >
7171 <dependency >
7272 <groupId >org.junit.jupiter</groupId >
7373 <artifactId >junit-jupiter-engine</artifactId >
74- <version >5.9.1 </version >
74+ <version >5.9.2 </version >
7575 <scope >test</scope >
7676 </dependency >
7777 <!-- testcontainers -->
102102 <dependency >
103103 <groupId >ch.admin.bag.covidcertificate</groupId >
104104 <artifactId >cc-backend-logging</artifactId >
105- <version >1.0.4 </version >
105+ <version >1.0.6 </version >
106106 </dependency >
107107
108108 <!-- LogBack dependencies -->
You can’t perform that action at this time.
0 commit comments