Fix links to quickstart repo
This commit is contained in:
parent
eb1b1baf56
commit
4b243553e7
3 changed files with 14 additions and 9 deletions
|
@ -3,25 +3,25 @@
|
||||||
|
|
||||||
Now that the *app-authz-vanilla* resource server (or client) is properly configured and authorization services are enabled, it can be deployed to the server.
|
Now that the *app-authz-vanilla* resource server (or client) is properly configured and authorization services are enabled, it can be deployed to the server.
|
||||||
|
|
||||||
The project and code for the application you are going to deploy is available in link:{{book.quickstartRepo}}[Red Hat Developers GitHub]. You will need the following
|
The project and code for the application you are going to deploy is available in link:{{book.quickstartRepo.link}}[{{book.quickstartRepo.name}}]. You will need the following
|
||||||
installed on your machine and available in your PATH before you can continue:
|
installed on your machine and available in your PATH before you can continue:
|
||||||
|
|
||||||
* Java JDK 8
|
* Java JDK 8
|
||||||
* Apache Maven 3.1.1 or higher
|
* Apache Maven 3.1.1 or higher
|
||||||
* Git
|
* Git
|
||||||
|
|
||||||
You can obtain the code by cloning the repository at {{book.quickstartRepo}}. Use the branch matching the version of Red Hat Single Sign-On in use. Follow these steps to download the code.
|
You can obtain the code by cloning the repository at {{book.quickstartRepo.link}}. Use the branch matching the version of Red Hat Single Sign-On in use. Follow these steps to download the code.
|
||||||
|
|
||||||
.Clone Project
|
.Clone Project
|
||||||
[source, subs="attributes"]
|
[source, subs="attributes"]
|
||||||
----
|
----
|
||||||
$ git clone {{book.quickstartRepo}}
|
$ git clone {{book.quickstartRepo.link}}
|
||||||
----
|
----
|
||||||
|
|
||||||
The application we are about to build and deploy is located at
|
The application we are about to build and deploy is located at
|
||||||
|
|
||||||
----
|
----
|
||||||
$ cd redhat-sso-quickstarts/app-authz-jee-vanilla
|
$ cd {{book.quickstartRepo.dir}}/app-authz-jee-vanilla
|
||||||
----
|
----
|
||||||
|
|
||||||
==== Obtaining the Adapter Configuration
|
==== Obtaining the Adapter Configuration
|
||||||
|
|
|
@ -51,7 +51,12 @@
|
||||||
"link": "http://www.keycloak.org/documentation.html"
|
"link": "http://www.keycloak.org/documentation.html"
|
||||||
},
|
},
|
||||||
|
|
||||||
"quickstartRepo": "https://github.com/keycloak/keycloak-quickstarts",
|
"quickstartRepo": {
|
||||||
|
"name": "Keycloak Quickstarts Repository",
|
||||||
|
"link": "https://github.com/keycloak/keycloak-quickstarts",
|
||||||
|
"dir": "keycloak-quickstarts"
|
||||||
|
},
|
||||||
|
|
||||||
"fuseVersion": "JBoss Fuse 6.3.0 Rollup 1",
|
"fuseVersion": "JBoss Fuse 6.3.0 Rollup 1",
|
||||||
|
|
||||||
"appserver": {
|
"appserver": {
|
||||||
|
|
|
@ -1,21 +1,21 @@
|
||||||
|
|
||||||
=== Downloading, Building, and Deploying Application Code
|
=== Downloading, Building, and Deploying Application Code
|
||||||
|
|
||||||
The project and code for the application you are going to secure is available in link:{{book.quickstartRepo}}[Red Hat Developers GitHub]. You will need the following
|
The project and code for the application you are going to secure is available in link:{{book.quickstartRepo.link}}[{{book.quickstartRepo.name}}]. You will need the following
|
||||||
installed on your machine and available in your PATH before you can continue:
|
installed on your machine and available in your PATH before you can continue:
|
||||||
|
|
||||||
* Java JDK 8
|
* Java JDK 8
|
||||||
* Apache Maven 3.1.1 or higher
|
* Apache Maven 3.1.1 or higher
|
||||||
* Git
|
* Git
|
||||||
|
|
||||||
You can obtain the code by cloning the repository at {{book.quickstartRepo}}. Use the branch matching the version of Red Hat Single Sign-On in use. Follow these steps to download the code, build it,
|
You can obtain the code by cloning the repository at {{book.quickstartRepo.link}}. Use the branch matching the version of Red Hat Single Sign-On in use. Follow these steps to download the code, build it,
|
||||||
and deploy it. Make sure your {{book.appserver.name}} application server is started before you run these steps.
|
and deploy it. Make sure your {{book.appserver.name}} application server is started before you run these steps.
|
||||||
|
|
||||||
.Clone Project
|
.Clone Project
|
||||||
[source, subs="attributes"]
|
[source, subs="attributes"]
|
||||||
----
|
----
|
||||||
$ git clone {{book.quickstartRepo}}
|
$ git clone {{book.quickstartRepo.link}}
|
||||||
$ cd redhat-sso-quickstarts/app-profile-jee-vanilla
|
$ cd {{book.quickstartRepo.dir}}/app-profile-jee-vanilla
|
||||||
$ mvn clean wildfly:deploy
|
$ mvn clean wildfly:deploy
|
||||||
----
|
----
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue