|
There is a compilation cross-dependency cycle in shared-kerberos :
in kerberos-common project.xml (version 0.5.1-SNAPSHOT):
<dependency>
<groupId>directory-shared</groupId>
<artifactId>protocol-common</artifactId>
<version>0.5.0-SNAPSHOT</version>
</dependency>
in protocol-common project.xml (version 0.5.0-SNAPSHOT) :
<dependency>
<groupId>directory-shared</groupId>
<artifactId>kerberos-common</artifactId>
<version>0.5.1-SNAPSHOT</version>
</dependency>
|