在 Maven 生命周期期间运行 JavaScript 文件
早些时候,我使用以下命令在 Maven 生命周期中运行 .sh 和 .rb 文件,
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>Version Calculation</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>${basedir}/scripts/IndexRunner/test.rb</executable>
</configuration>
</plugin>
现在我想运行 .js 文件,我尝试将 test.rb 替换为某些文件 test.js 但它不起作用,有任何帮助吗 如何在 Maven 生命周期中运行 javascript 文件
Earlier I run .sh and .rb file in the maven life cycle using the following,
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>Version Calculation</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>${basedir}/scripts/IndexRunner/test.rb</executable>
</configuration>
</plugin>
Now I want to run a .js file, I tried by replacing test.rb to some file test.js but its not working, any help to
how to run a javascript file during maven lifecycle
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用触发 javascript 文件的 java 类。使用 exec 插件你可以运行这个文件。文件的内容是这样的。
You should use a java class which is triggering javascript file. And with exec plugin you can run this file. The content of the file is like this.
仅供参考,Github 上还有一个用于此任务的 Maven 插件(使用 Apache Bean 脚本框架):
https://github.com/alexec/script-maven-plugin
FYI, there is also a maven plugin on Github (using Apache Bean Scripting Framework) for this task:
https://github.com/alexec/script-maven-plugin