No description
Find a file
Pavel Drozd cf5c3aa53b Merge pull request #3710 from mhajas/KEYCLOAK-3488
KEYCLOAK-3488 Add missing test
2017-01-05 11:03:35 +01:00
adapters Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
authz Merge pull request #3690 from stianst/master 2017-01-02 08:52:04 +01:00
common Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
core Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
dependencies Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
distribution Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
examples Merge pull request #3690 from stianst/master 2017-01-02 08:52:04 +01:00
federation Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
integration KEYCLOAK-4146 Admin CLI enhancements 2017-01-03 11:14:12 +01: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 Merge pull request #3700 from stianst/KEYCLOAK-2980 2017-01-04 07:01:19 +01:00
proxy Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
saml-core KEYCLOAK-4148 Instantiate XMLInputFactory in singleton-like manner 2017-01-03 15:34:28 +01:00
saml-core-api Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
server-spi Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
server-spi-private Merge pull request #3708 from stianst/KEYCLOAK-2856 2017-01-05 09:01:37 +01:00
services [KEYCLOAK-3517] - Filtering SAML ECP flow 2017-01-04 11:17:39 -02:00
testsuite Merge pull request #3710 from mhajas/KEYCLOAK-3488 2017-01-05 11:03:35 +01:00
themes KEYCLOAK-4155: User Federation: Page not found when click cancel creating 2017-01-04 14:03:39 -05:00
util Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
wildfly Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +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 Cleanup of tests including groups for Travis 2017-01-03 07:52:00 +01:00
License.html distro 2014-01-07 14:37:50 -05:00
pom.xml Bump version to 2.5.1.Final-SNAPSHOT 2016-12-22 08:22:18 +01:00
README.md fixed maven prereq version to match pom 2016-11-13 12:24:01 -05:00
travis-run-tests.sh Cleanup of tests including groups for Travis 2017-01-03 07:52:00 +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