> For example my exe file installation is Netbeans 6.8 which i have in a fixed
> location, how do i open this exe file for installation and how do i proceed
> with the automation instead of the user doing it manually, all through a
> Maven application.
Something along these lines:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>netbeans_6.8_installer.exe</executable>
</configuration>
</plugin>
Wayne
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]