in src/main/java/org/apache/maven/plugins/scmpublish/ScmPublishPublishScmMojo.java [171:178]
private void copySymLink(File srcFile, File destFile) throws IOException {
Files.copy(
srcFile.toPath(),
destFile.toPath(),
StandardCopyOption.REPLACE_EXISTING,
StandardCopyOption.COPY_ATTRIBUTES,
LinkOption.NOFOLLOW_LINKS);
}