Skip to content

Commit

Permalink
Gradle changed uploadDocumentation rsync url and port
Browse files Browse the repository at this point in the history
  • Loading branch information
dreab8 authored and yrodiere committed Apr 11, 2022
1 parent 39e0cca commit 03f1cce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release/release.gradle
Expand Up @@ -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 ) {
Expand Down

0 comments on commit 03f1cce

Please sign in to comment.