Repository: guacamole-client Updated Branches: refs/heads/staging/1.0.0 001ece14e -> a967ffa41
GUACAMOLE-670: Add slf4j logging to modules to avoid pulling in conflicting versions. Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/73744d22 Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/73744d22 Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/73744d22 Branch: refs/heads/staging/1.0.0 Commit: 73744d22f955b7b1522a2152ccb2cd01cb86837e Parents: 001ece1 Author: Nick Couchman <vn...@apache.org> Authored: Sun Dec 2 15:43:12 2018 -0500 Committer: Nick Couchman <vn...@apache.org> Committed: Sun Dec 2 15:43:12 2018 -0500 ---------------------------------------------------------------------- extensions/guacamole-auth-cas/pom.xml | 7 +++++++ extensions/guacamole-auth-radius/pom.xml | 8 ++++++++ 2 files changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/73744d22/extensions/guacamole-auth-cas/pom.xml ---------------------------------------------------------------------- diff --git a/extensions/guacamole-auth-cas/pom.xml b/extensions/guacamole-auth-cas/pom.xml index be07c64..323b667 100644 --- a/extensions/guacamole-auth-cas/pom.xml +++ b/extensions/guacamole-auth-cas/pom.xml @@ -249,6 +249,13 @@ <scope>provided</scope> </dependency> + <!-- slf4j Logging --> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-simple</artifactId> + <version>1.7.7</version> + <scope>provided</scope> + </dependency> </dependencies> http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/73744d22/extensions/guacamole-auth-radius/pom.xml ---------------------------------------------------------------------- diff --git a/extensions/guacamole-auth-radius/pom.xml b/extensions/guacamole-auth-radius/pom.xml index 151875c..af838d8 100644 --- a/extensions/guacamole-auth-radius/pom.xml +++ b/extensions/guacamole-auth-radius/pom.xml @@ -230,6 +230,14 @@ <artifactId>jradius-extended</artifactId> <version>1.1.5</version> </dependency> + + <!-- slf4j Logging --> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-simple</artifactId> + <version>1.7.7</version> + <scope>provided</scope> + </dependency> </dependencies>