#67
[Maven] Execute SSH Bash command
<!-- Run remote command (deploy nohup) --> <plugin> <groupId>com.github.goldin</groupId> <artifactId>sshexec-maven-plugin</artifactId> <version>0.2.5</version> <executions> <execution> <id>update-app</id> <phase>install</phase> <goals> <goal>sshexec</goal> </goals> <configuration> <location>scp://${deploy.user}:${deploy.password}@${deploy.host}:${deploy.script.path}</location> <command>./deployApp.sh</command> </configuration> </execution> </executions> </plugin>
[Maven] Copy file with SCP [Maven] Execute Selenium Test Cases