Hi, I'm trying to fix a bug that I'm experiencing in my Apache guacamole deployment that relies upon Apache Directory api-all:
https://mvnrepository.com/artifact/org.apache.directory.api/api-all pom.xml: <!-- Apache Directory LDAP API --> <dependency> <groupId>com.novell.ldap</groupId> <artifactId>jldap</artifactId> <version>4.3</version> <groupId>org.apache.directory.api</groupId> <artifactId>api-all</artifactId> <version>2.0.0.AM2</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> This is due to possibly bug: https://issues.apache.org/jira/browse/DIRSTUDIO-1197?page=com.atlassian.jira.plugin.system.issuetabpanels%3Aall-tabpanel Which has existed in the code base since August 18, 2017. Can someone please help me push out an update for this to the above mentioned repo or tell me how I can compile it from source and insert the dependency in the pom.xml from apache guacamole shown above. Thanks so much for your help. I've been working on this project all year and now I notice some of the time the ldap authentication is bugged due to this issue and I have a presentation next Wednesday. Please help, this is for the good of all cs students everywhere. :) I tried to build from github: https://github.com/apache/directory-studio The ./build.sh script ended in an error for me though and I'm not certain how to take the built files from it and insert them directly into the pom.xml.
