keycloak
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.avast.grpc.jwt</groupId> <artifactId>keycloak</artifactId> <version>0.4.9</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.avast.grpc.jwt</groupId> <artifactId>keycloak</artifactId> <version>0.4.9</version> <name>gRPC Java JWT</name> <description>JWT based authentication for gRPC-Java</description> <url>https://github.com/avast/grpc-java-jwt</url> <licenses> <license> <name>The MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <id>augi</id> <name>Michal Augustýn</name> <email>augustyn.michal@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/avast/grpc-java-jwt.git</connection> <developerConnection>scm:git:ssh://github.com/avast/grpc-java-jwt.git</developerConnection> <url>https://github.com/avast/grpc-java-jwt</url> </scm> <dependencies> <dependency> <groupId>com.avast.grpc.jwt</groupId> <artifactId>core</artifactId> <version>0.4.9</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.keycloak</groupId> <artifactId>keycloak-admin-client</artifactId> <version>12.0.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.68</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.typesafe</groupId> <artifactId>config</artifactId> <version>1.4.1</version> <scope>compile</scope> </dependency> </dependencies> </project>