Skip to content

Commit 31ff9f9

Browse files
author
Issa Gorissen
committed
Updated version to 3.52.0 in pom.xml and added missing method in CrowdUserManager
1 parent fcd7534 commit 31ff9f9

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>org.sonatype.nexus.plugins</groupId>
88
<artifactId>nexus-plugins</artifactId>
9-
<version>3.48.0-01</version>
9+
<version>3.52.0-01</version>
1010
</parent>
1111

1212
<groupId>com.roumanoff.nexus</groupId>
1313
<artifactId>nexus-crowd-plugin</artifactId>
14-
<version>3.48.0</version>
14+
<version>3.52.0</version>
1515
<name>${project.groupId}:${project.artifactId}</name>
1616
<packaging>bundle</packaging>
1717

src/main/java/org/sonatype/nexus/plugins/crowd/security/CrowdUserManager.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ public Set<User> searchUsers(UserSearchCriteria criteria) {
105105
}
106106
}
107107

108+
@Override
109+
public User getUser(String userId, Set<String> roleIds) throws UserNotFoundException {
110+
return getUser(userId);
111+
}
108112

109113

110114
private User completeUserRolesAndSource(User user) {

0 commit comments

Comments
 (0)