[KEYCLOAK-1136] - Adding quarkus distribution to the build
This commit is contained in:
parent
13b5463153
commit
b4db6216c3
3 changed files with 25 additions and 0 deletions
|
@ -66,6 +66,12 @@
|
|||
<module>downloads</module>
|
||||
</modules>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>quarkus</id>
|
||||
<modules>
|
||||
<module>server-x</module>
|
||||
</modules>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
|
|
|
@ -40,6 +40,16 @@
|
|||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.keycloak</groupId>
|
||||
<artifactId>keycloak-quarkus-server</artifactId>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>*</groupId>
|
||||
<artifactId>*</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
9
pom.xml
9
pom.xml
|
@ -1741,6 +1741,15 @@
|
|||
<modules>
|
||||
<module>quarkus</module>
|
||||
</modules>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.keycloak</groupId>
|
||||
<artifactId>keycloak-quarkus-server</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</profile>
|
||||
|
||||
</profiles>
|
||||
|
|
Loading…
Reference in a new issue