No description
Find a file
2016-11-30 08:38:35 +01:00
adapters Bump version to 2.4.1.Final-SNAPSHOT 2016-11-22 14:56:21 +01:00
authz Bump version to 2.4.1.Final-SNAPSHOT 2016-11-22 14:56:21 +01:00
common Bump version to 2.4.1.Final-SNAPSHOT 2016-11-22 14:56:21 +01:00
core KEYCLOAK-3980 2016-11-28 12:20:40 -05:00
dependencies Bump version to 2.4.1.Final-SNAPSHOT 2016-11-22 14:56:21 +01:00
distribution KEYCLOAK-3982 keycloak-jboss-adapter-core module.xml unsynced among Wildfly OIDC and SAML adapter ZIPs 2016-11-25 11:04:24 +01:00
examples UserBulkUpdateProvider interface 2016-11-29 18:43:22 -05:00
federation UserBulkUpdateProvider interface 2016-11-29 18:43:22 -05:00
integration javadoc 2016-11-28 12:25:54 -05:00
misc KEYCLOAK-3857 Clustered invalidation cache fixes and refactoring. Support for cross-DC for invalidation caches. 2016-11-16 22:29:23 +01:00
model KEYCLOAK-3997 InfinispanKeyStorageProviderTest was failing 2016-11-30 08:38:35 +01:00
proxy Bump version to 2.4.1.Final-SNAPSHOT 2016-11-22 14:56:21 +01:00
saml-core Bump version to 2.4.1.Final-SNAPSHOT 2016-11-22 14:56:21 +01:00
saml-core-api Bump version to 2.4.1.Final-SNAPSHOT 2016-11-22 14:56:21 +01:00
server-spi UserBulkUpdateProvider interface 2016-11-29 18:43:22 -05:00
server-spi-private KEYCLOAK-3822 Changing signature validation settings of an external IdP is not sometimes reflected 2016-11-28 15:27:25 +01:00
services UserBulkUpdateProvider interface 2016-11-29 18:43:22 -05:00
testsuite UserBulkUpdateProvider interface 2016-11-29 18:43:22 -05:00
themes KEYCLOAK-3903 KEYCLOAK-3960 2016-11-29 16:43:06 -05:00
util Bump version to 2.4.1.Final-SNAPSHOT 2016-11-22 14:56:21 +01:00
wildfly Merge pull request #3560 from ssilvert/scheduled-task-interval 2016-11-29 10:51:00 +01:00
.gitattributes KEYCLOAK-1385 Introduce end-of-line normalization 2015-07-17 13:46:51 +02:00
.gitignore Ignore dependency-reduced-pom.xml created by Maven Shade plugin 2016-09-29 05:27:43 -03:00
.travis.yml KEYCLOAK-3124 Possibility test adapter on embedded undertow 2016-11-29 22:08:23 +01:00
License.html distro 2014-01-07 14:37:50 -05:00
pom.xml fix pom 2016-11-23 17:08:24 -05:00
README.md fixed maven prereq version to match pom 2016-11-13 12:24:01 -05:00
travis-run-tests.sh KEYCLOAK-3124 Possibility test adapter on embedded undertow 2016-11-29 22:08:23 +01:00

Keycloak

Open Source Identity and Access Management for modern Applications and Services.

For more information about Keycloak visit Keycloak homepage and Keycloak blog.

Building

Ensure you have JDK 8 (or newer), Maven 3.1.1 (or newer) and Git installed

java -version
mvn -version
git --version

First clone the Keycloak repository:

git clone https://github.com/keycloak/keycloak.git
cd keycloak

To build Keycloak run:

mvn install

This will build all modules and run the testsuite.

To build the distribution run:

mvn install -Pdistribution

Once completed you will find distribution archives in distribution.

Starting Keycloak

To start Keycloak during development first build as specified above, then run:

mvn -f testsuite/integration/pom.xml exec:java -Pkeycloak-server 

To start Keycloak from the appliance distribution first build the distribution it as specified above, then run:

tar xfz distribution/appliance-dist/target/keycloak-appliance-dist-all-<VERSION>.tar.gz
cd keycloak-appliance-dist-all-<VERSION>/keycloak
bin/standalone.sh

To stop the server press Ctrl + C.

Help and Documentation

  • Documentation - User Guide, Admin REST API and Javadocs
  • User Mailing List - Mailing list to ask for help and general questions about Keycloak
  • JIRA - Issue tracker for bugs and feature requests

Contributing

License