Fix dependency exclusions in server-dist to make sure dependency versions are inherited from WF

This commit is contained in:
Stian Thorgersen 2017-06-27 14:23:32 +02:00
parent 947254e14f
commit 073f1eda54

View file

@ -34,11 +34,23 @@
<groupId>org.keycloak</groupId>
<artifactId>keycloak-server-feature-pack</artifactId>
<type>zip</type>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-client-cli-dist</artifactId>
<type>zip</type>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>