Executing a script from Maven 3 using exec plugin - gets blocked

4.8k Views Asked by At

This is the situation I'm facing: at the moment I have two Maven projects, one that does nothing but describing dependencies, repositories, etc. (the parent) and a child which inherits the other's pom.xml. There'll be more modules to be created in the future, following the same model as the child.

We decided to deploy the projects' sites (generated with maven-site-plugin) to a location accessible at this moment only via sftp. And I found it impossible to define the site location in <distributionManagement> because I couldn't integrate the sftp protocol (I tried using wagon-ssh-external).

As a result, I've created a script that connects to the remote machine and uploads the contents of a local folder where our site is deployed during the site-deploy phase:

echo "Uploading the site.."
lftp -u ${username},${password} sftp://${host} <<EOF
mirror -R --delete-first $sitedir $remotedir
echo "Exiting from lftp.."
bye
EOF
echo "Terminating script execution.."

This works perfectly for the parent site, uploading the site right after it's created locally, but when the child gets at the end of the script, it doesn't finish properly, prints Terminating script execution.. and stays there.

I'm using Eclipse, the last version (3.7) with the default Maven plugin (v. 3.0.2). To generate and deploy the site in Eclipse, I've right-clicked the parent project > Run as > Maven build... > parent clean site-deploy.

These are parts of the parent's pom.xml:

<distributionManagement>
 <!-- Generate the site locally, then it'll be uploaded to the server -->
 <!-- Children will append their artifact ID to the base url  -->
 <site>
  <id>project-name</id>
  <name>Project Name</name>
  <url>file://${env.HOME}/testsite/</url>
 </site>
</distributionManagement>
...
<build> 
<pluginManagement>
 <plugins>
  <plugin>
   <groupId>org.codehaus.mojo</groupId>
   <artifactId>exec-maven-plugin</artifactId>
   <version>1.2.1</version>
  </plugin>
 </plugins>
</pluginManagement>
<plugins>
 <plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-site-plugin</artifactId>
  <version>3.0</version>
  <configuration>
    ...
 </plugin>
 <plugin>
  <groupId>org.codehaus.mojo</groupId>          
  <artifactId>exec-maven-plugin</artifactId>
  <inherited>false</inherited>
  <executions>
   <execution>
    <id>sh</id>
    <phase>site-deploy</phase>
    <goals>
     <goal>exec</goal>
    </goals>
    <configuration>
     <executable>sh</executable>
     <arguments>
      <argument>publish-site.sh</argument>
      <argument>${localsitedir}</argument>
      ...
     </arguments>
    </configuration>
   </execution>
  </executions>
 </plugin>
</plugins>
</build>

And from the child:

<build>
 <plugin>
  <groupId>org.codehaus.mojo</groupId>          
  <artifactId>exec-maven-plugin</artifactId>
  <executions>
   <execution>
    <id>sh</id>
    <phase>site-deploy</phase>          
    <goals>
     <goal>exec</goal>
    </goals>
    <configuration>
     <executable>sh</executable>
     <arguments>
      <argument>../parent/publish-site.sh</argument>
      <argument>${localsitedir}/child</argument>
      ...
     </arguments>
    </configuration>
   </execution>
  </executions>
 </plugin>
</build>

I've tried different ways to configure the exec plugin (without using pluginManagement, inheriting the parent's configuration of the plugin and only rewriting the arguments part, etc..) and it always gets blocked when finishing the script and doesn't end the execution.

The site is uploaded correctly, but of course, I don't want to manually terminate the Maven build execution each time I want to update the site (also, it is planned to deploy artifacts from the project to a Jenkins server, so the site deployment hopefully would be working by then).

1

There are 1 best solutions below

0
On

My answer is based on a lot of speculation... I faced a similar issue about a SSH command that do not terminate and the reason was:

Maybe ' lftp ' starts a process that do not exit, and maybe (probably), the maven-exec plugin loops on stdout and stderr to print all relevant messages before to exit. If there are not closed by all writers, it stucks.

Try to redirect output of 'lftp' to /dev/null, just in case.