Le 4/14/14 1:53 PM, Guillaume Nodet a écrit : > Vote to release the 0.11.0 version of SSHD > > Release notes: > > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310849&version=12326277 > Staging repository: > https://repository.apache.org/content/repositories/orgapachemina-1002
Wrong link. It is https://repository.apache.org/content/repositories/orgapachemina-1003/ Otherwise, both the git epo and the package build fine (although I had a failure once : Tests in error: testAES128CBC(org.apache.sshd.CipherTest)) Two files are not in the exclusion list for the rat plugin, when I execute it on teh command line : sshd-core/src/test/resources/org/apache/sshd/common/util/stty-output-1.txt sshd-core/src/test/resources/org/apache/sshd/common/util/stty-output-2.txt Thsi is due to the fact that the pom.xml does not specify the exclusions when using the command like : mvn apache-rat:check With this configuration : <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.10</version> <executions> <execution> <phase>verify</phase> <goals> <goal>check</goal> </goals> <configuration> <excludes> <exclude>**/*.iml</exclude> <exclude>src/docs/**</exclude> <exclude>**/stty-output-*.txt</exclude> </excludes> </configuration> </execution> </executions> <configuration> <excludes> <exclude>**/*.iml</exclude> <exclude>src/docs/**</exclude> <exclude>**/stty-output-*.txt</exclude> </excludes> </configuration> </plugin> it works. My +1 -- Regards, Cordialement, Emmanuel Lécharny www.iktek.com
