I want to execute windows powershell script with Maven. Here is what I tried:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<id>some-execution</id>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>D:\Projects\test.ps1</executable>
</configuration>
</plugin>
But it is just opening the powershell script while executing the pom
mvn exec:exec