Hi I am using maven3
I want to execute my bat file from pom but it is not working please guide me
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>run</phase>
<configuration>
<target name="RUN">
<echo
message="${basedir}"/>
<exec
executable="cmd"
dir="D:\Android
Calabash\Reportplugin\Calabash\"
spawn="true">
<arg
value="/c"/>
<arg
value="cd Calabash"/>
<arg
value="D:\Android Calabash\Reportplugin\Calabash\run.bat"/>
</exec>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>When i run from cmd prompt i used following commands >mvn target:run >mvn verify >mvn run >mvn exe:run >mvn package only build success but bat file not run -- View this message in context: http://maven.40175.n5.nabble.com/Need-an-example-of-calling-a-batch-file-from-maven-please-tp47519p5780288.html Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
