Gradle changed uploadDocumentation rsync url and port

This commit is contained in:
Andrea Boriero 2022-04-11 10:34:18 +02:00 committed by Yoann Rodière
parent 6c7edbf640
commit 79f08afc8a
1 changed files with 2 additions and 2 deletions

View File

@ -108,10 +108,10 @@ task assembleDocumentation(type: Task, dependsOn: [rootProject.project( 'documen
task uploadDocumentation(type:Exec, dependsOn: assembleDocumentation) {
description = "Uploads documentation to the JBoss doc server"
final String url = "filemgmt.jboss.org:/docs_htdocs/hibernate/orm/${rootProject.ormVersion.family}";
final String url = "filemgmt-prod-sync.jboss.org:/docs_htdocs/hibernate/orm/${rootProject.ormVersion.family}";
executable 'rsync'
args '-avz', '--links', "${documentationDir.absolutePath}/", url
args '--port=2222' , '-avz', '--links', "${documentationDir.absolutePath}/", url
doFirst {
if ( rootProject.ormVersion.isSnapshot ) {