我正在尝试执行一个在 Maven 构建期间写入文件的 powershell 脚本。
我正在mvn clean install
通过 Eclipse IDE 调用构建。
这是我的 pom.xml 中的插件:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>${project.basedir}/.my-file.ps1</executable>
</configuration>
</plugin>
</plugins>
powershell 脚本是一个隐藏文件,所以我.
在文件名前面有一个。
但是,插件没有执行,我按照官方文档中的说明进行操作。