zl程序教程

您现在的位置是:首页 >  后端

当前栏目

【Maven插件】exec-maven-plugin

Maven插件 plugin exec
2023-09-27 14:25:06 时间


<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<!-- <id>uncompress</id> -->
<phase>docker:build</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>/usr/bin/echo</executable>
<arguments>
<argument>${imageName}</argument>
<argument>></argument>
<argument>>scripts/image.info</argument>
</arguments>
<!-- <commandlineArgs></commandlineArgs> -->
</configuration>
</execution>
</executions>
</plugin>