No description
Find a file
Pavel Drozd b4c5eb8354 Merge pull request #3994 from vramik/KEYCLOAK-4534
KEYCLOAK-4534 ClientInitiatedAccountLinkTest fails with auth-server-w…
2017-04-04 10:47:36 +02:00
adapters KEYCLOAK-4668 Exclude modules in product profile 2017-03-28 10:04:20 +02:00
authz Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
boms KEYCLOAK-4601 Add nexus-staging-maven-plugin fo keycloak-bom-parent 2017-03-17 13:11:59 +01:00
common KEYCLOAK-4335: x509 client certificate authentication 2017-03-17 05:24:57 -04:00
core Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
dependencies Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
distribution [KEYCLOAK-3573] - Elytron adapter CLI scripts and tests. 2017-03-31 11:31:33 -03:00
examples Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
federation Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
integration KEYCLOAK-4658 Updates client-cli 2017-03-24 09:41:56 +01:00
misc Removal of duplicated code for testhelper 2017-03-31 10:34:59 -03:00
model Fix CachePolicy.MAX_LIFESPAN invalidation 2017-03-20 22:56:35 -04:00
proxy Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
saml-core Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
saml-core-api Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
server-spi Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
server-spi-private KEYCLOAK-4638 Migrator to 3.0.0 contains code coppied from 2.5.0 2017-03-22 13:08:12 +01:00
services [KEYCLOAK-4650] - Adding scope filter and fixing cancel buttons 2017-03-29 12:59:41 -03:00
testsuite Merge pull request #3994 from vramik/KEYCLOAK-4534 2017-04-04 10:47:36 +02:00
themes [KEYCLOAK-4650] - Adding scope filter and fixing cancel buttons 2017-03-29 12:59:41 -03:00
util Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
wildfly Bump to 3.1.0.CR1-SNAPSHOT 2017-03-16 14:21:40 +01:00
.gitattributes KEYCLOAK-1385 Introduce end-of-line normalization 2015-07-17 13:46:51 +02:00
.gitignore KEYCLOAK-4101: jboss-cli script to do migration of configuration 2017-01-09 18:15:26 -05:00
.travis.yml Remove adapter tests from Travis as no tests where being ran 2017-03-13 14:42:39 +01:00
License.html distro 2014-01-07 14:37:50 -05:00
pom.xml KEYCLOAK-4668 Exclude modules in product profile 2017-03-28 10:04:20 +02:00
README.md fixed maven prereq version to match pom 2016-11-13 12:24:01 -05:00
travis-run-tests.sh Add --no-snapshot-updates to Travis builds 2017-03-13 08:53:03 +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