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> <groupId>org.keycloak</groupId>
<artifactId>keycloak-server-feature-pack</artifactId> <artifactId>keycloak-server-feature-pack</artifactId>
<type>zip</type> <type>zip</type>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.keycloak</groupId> <groupId>org.keycloak</groupId>
<artifactId>keycloak-client-cli-dist</artifactId> <artifactId>keycloak-client-cli-dist</artifactId>
<type>zip</type> <type>zip</type>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
</dependencies> </dependencies>