Skip to content

Commit 77a4adf

Browse files
authored
Merge pull request #7 from mzlnk/tmp/release-1.0.2-beta
tmp/release-1.0.2-beta
2 parents cdafc90 + 778e804 commit 77a4adf

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ in Spring Boot configuration file ;)
1818
🚧 The project is currently in BETA. There can be lack of some features or some bugs may still appear. However, we do our best to continuously improve
1919
and develop the starter ;)
2020

21-
**Latest version:** 1.0.1-beta
21+
**Latest version:** 1.0.2-beta
2222

2323
## Getting started!
2424

@@ -29,7 +29,7 @@ If you want to use the starter in your project - just include proper dependency
2929
<dependency>
3030
<groupId>io.mzlnk.springframework</groupId>
3131
<artifactId>multi-tenant-oauth2-resource-server-spring-boot-starter</artifactId>
32-
<version>1.0</version>
32+
<version>1.0.2-beta</version>
3333
</dependency>
3434
```
3535

autoconfigure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.mzlnk.springframework</groupId>
88
<artifactId>multi-tenant-oauth2-resource-server-spring-boot-autoconfigure</artifactId>
9-
<version>1.0.1-beta</version>
9+
<version>1.0.2-beta</version>
1010
<packaging>jar</packaging>
1111

1212
<name>multi-tenant-oauth2-resource-server-spring-boot-autoconfiguration</name>

autoconfigure/src/main/java/io/mzlnk/springframework/multitenant/oauth2/resourceserver/resolver/jwt/PublicKeyJwtAuthenticationManagerResolver.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ public class PublicKeyJwtAuthenticationManagerResolver implements Authentication
1818
private final Map<String, AuthenticationManager> authenticationManagers;
1919

2020
public PublicKeyJwtAuthenticationManagerResolver(Map<String, RSAPublicKey> issuersPublicKeys) {
21-
Assert.notEmpty(issuersPublicKeys, "publicKeys cannot be empty");
22-
2321
this.authenticationManagers = issuersPublicKeys.entrySet()
2422
.stream()
2523
.collect(Collectors.toConcurrentMap(this::retrieveIssuer, this::retrieveAuthenticationManager));

demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
<java.version>15</java.version>
5252

53-
<multi-tenant-oauth2-resource-server-spring-boot-starter.version>1.0</multi-tenant-oauth2-resource-server-spring-boot-starter.version>
53+
<multi-tenant-oauth2-resource-server-spring-boot-starter.version>1.0.2-beta</multi-tenant-oauth2-resource-server-spring-boot-starter.version>
5454
</properties>
5555

5656
<dependencies>

starter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.mzlnk.springframework</groupId>
88
<artifactId>multi-tenant-oauth2-resource-server-spring-boot-starter</artifactId>
9-
<version>1.0.1-beta</version>
9+
<version>1.0.2-beta</version>
1010
<packaging>jar</packaging>
1111

1212
<name>multi-tenant-oauth2-resource-server-spring-boot-starter</name>
@@ -68,7 +68,7 @@
6868
<maven.compiler.target>15</maven.compiler.target>
6969

7070
<oauth2-oidc-sdk.version>6.23</oauth2-oidc-sdk.version>
71-
<multi-tenant-oauth2-resource-server-spring-boot-autoconfigure.version>1.0.1-beta</multi-tenant-oauth2-resource-server-spring-boot-autoconfigure.version>
71+
<multi-tenant-oauth2-resource-server-spring-boot-autoconfigure.version>1.0.2-beta</multi-tenant-oauth2-resource-server-spring-boot-autoconfigure.version>
7272
</properties>
7373

7474
<dependencies>

0 commit comments

Comments
 (0)