mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-10 15:32:05 -03:30
Include JNA dependency for the SSSD in the keycloak server (#37905)
Closes #37898 Signed-off-by: rmartinc <rmartinc@redhat.com>
This commit is contained in:
parent
aabd7571ec
commit
6751c8cb35
@ -55,7 +55,9 @@ public class PAMAuthenticator {
|
||||
logger.error("Authentication failed", e);
|
||||
e.printStackTrace();
|
||||
} finally {
|
||||
pam.dispose();
|
||||
if (pam != null) {
|
||||
pam.dispose();
|
||||
}
|
||||
}
|
||||
return user;
|
||||
}
|
||||
|
||||
@ -646,6 +646,10 @@
|
||||
<artifactId>nashorn-core</artifactId>
|
||||
<version>${nashorn.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.java.dev.jna</groupId>
|
||||
<artifactId>jna</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user