exec-maven-plugin 在 jenkins 中没有 运行 shell 脚本
exec-maven-plugin does not run shell script in jenkins
你好,我尝试 运行 使用 maven exec 插件在我的源代码中创建一个脚本
它在我的本地机器上构建并且 运行s 很好,但在 jenkins 上它没有。
这是插件部分
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>1.6.0</version>
<executions>
<execution><!-- Run our version calculation script -->
<id>Version Calculation</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>/bin/bash</executable>
<commandlineArgs>"${session.executionRootDirectory}/update_snapshot_version.sh"</commandlineArgs>
</configuration>
</plugin>
这是错误
16:17:32 [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:exec (default-cli) on project filters: The parameter 'executable' is missing or invalid -> [Help 1]
16:17:32 [ERROR]
16:17:32 [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
16:17:32 [ERROR] Re-run Maven using the -X switch to enable full debug logging.
16:17:32 [ERROR]
16:17:32 [ERROR] For more information about the errors and possible solutions, please read the following articles:
我确认 /bin/bash 存在并且 jenkins 用户可以访问它。
问题是子项目中父项目的版本错误。不过,这不是针对此类问题的最有启发性的错误消息。
你好,我尝试 运行 使用 maven exec 插件在我的源代码中创建一个脚本 它在我的本地机器上构建并且 运行s 很好,但在 jenkins 上它没有。
这是插件部分
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>1.6.0</version>
<executions>
<execution><!-- Run our version calculation script -->
<id>Version Calculation</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>/bin/bash</executable>
<commandlineArgs>"${session.executionRootDirectory}/update_snapshot_version.sh"</commandlineArgs>
</configuration>
</plugin>
这是错误
16:17:32 [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:exec (default-cli) on project filters: The parameter 'executable' is missing or invalid -> [Help 1]
16:17:32 [ERROR]
16:17:32 [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
16:17:32 [ERROR] Re-run Maven using the -X switch to enable full debug logging.
16:17:32 [ERROR]
16:17:32 [ERROR] For more information about the errors and possible solutions, please read the following articles:
我确认 /bin/bash 存在并且 jenkins 用户可以访问它。
问题是子项目中父项目的版本错误。不过,这不是针对此类问题的最有启发性的错误消息。