Hi !
I have updated all the project's pom.xml file to fix the <scm> part.
We had some pointing to git-wip-us, which is defunct, some using
explicit tags (like 2.0.3 for fortress) or HEAD (although we have
switched to git).
The new scm part is now like :
<scm>
<connection>scm:git:https://gitbox.apache.org/repos/asf/directory-<XXXXXXXX>.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/directory-<XXXXXXXX>.git</developerConnection>
<url>https://github.com/apache/directory-<XXXXXXXX>.git/tree/{project.scm.tag}</url>
<tag>master</tag>
</scm>
The tag should always be master unless you are working in a branch. The
url points to github, because it offers a better WebUI to the source.
Feel free to tell me if something is wrong with your projects.
Thanks !