KEYCLOAK-7641 Add details on how to build server-only, including some fixes to poms
This commit is contained in:
parent
2f366b0d5d
commit
e98fcfe56e
3 changed files with 14 additions and 5 deletions
|
@ -32,6 +32,10 @@ To build the distribution run:
|
||||||
|
|
||||||
Once completed you will find distribution archives in `distribution`.
|
Once completed you will find distribution archives in `distribution`.
|
||||||
|
|
||||||
|
To build only the server run:
|
||||||
|
|
||||||
|
mvn -Pdistribution -pl distribution/server-dist -am -Dmaven.test.skip clean install
|
||||||
|
|
||||||
|
|
||||||
Starting Keycloak
|
Starting Keycloak
|
||||||
-----------------
|
-----------------
|
||||||
|
|
|
@ -134,11 +134,6 @@
|
||||||
<artifactId>keycloak-spring-boot-2-starter</artifactId>
|
<artifactId>keycloak-spring-boot-2-starter</artifactId>
|
||||||
<version>4.1.0.Final-SNAPSHOT</version>
|
<version>4.1.0.Final-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.keycloak</groupId>
|
|
||||||
<artifactId>keycloak-spring-boot-2-starter</artifactId>
|
|
||||||
<version>4.1.0.Final-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.keycloak</groupId>
|
<groupId>org.keycloak</groupId>
|
||||||
<artifactId>keycloak-authz-client</artifactId>
|
<artifactId>keycloak-authz-client</artifactId>
|
||||||
|
|
|
@ -582,6 +582,16 @@
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.keycloak</groupId>
|
||||||
|
<artifactId>keycloak-themes</artifactId>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>*</groupId>
|
||||||
|
<artifactId>*</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.keycloak</groupId>
|
<groupId>org.keycloak</groupId>
|
||||||
<artifactId>keycloak-wildfly-server-subsystem</artifactId>
|
<artifactId>keycloak-wildfly-server-subsystem</artifactId>
|
||||||
|
|
Loading…
Reference in a new issue