Skip to content

Commit

Permalink
feat: upgrade to nexus-plugins 3.70.1-02
Browse files Browse the repository at this point in the history
Signed-off-by: Rémi Verchère <[email protected]>
  • Loading branch information
rverchere-acn committed Aug 21, 2024
1 parent ec69b3a commit 5f368d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.github.flytreeleft</groupId>
<artifactId>nexus3-keycloak-plugin</artifactId>
<version>0.8.7-0</version>
<version>0.8.8-0</version>
<name>${project.groupId}:${project.artifactId}</name>
<packaging>bundle</packaging>

Expand All @@ -27,7 +27,7 @@
<parent>
<groupId>org.sonatype.nexus.plugins</groupId>
<artifactId>nexus-plugins</artifactId>
<version>3.69.0-02</version>
<version>3.70.1-02</version>
</parent>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public Privilege getPrivilege(String privilegeId) throws NoSuchPrivilegeExceptio
}

@Override
public Privilege getPrivilegeByName(String privilegeName) throws NoSuchPrivilegeException {
public Privilege getPrivilegeByName(String privilegeName) throws NoSuchPrivilegeException {
throw new NoSuchPrivilegeException("Keycloak plugin doesn't support privileges");
}

Expand All @@ -66,7 +66,7 @@ public List<Privilege> getPrivileges(final Set<String> privilegeIds) {
return Collections.emptyList();
}

@Override
@Override
public Role getRole(String roleId) throws NoSuchRoleException {
Role role = this.client.findRoleByRoleId(roleId);
if (role == null) {
Expand Down

0 comments on commit 5f368d1

Please sign in to comment.