我有我的Go源代码,在go build
之后,生成了一个可执行文件,该可执行文件接受一些参数来产生输出。
有什么办法可以使用任何插件从maven build生成可执行文件吗?
答案 0 :(得分:1)
您只需将go build
命令放入Shell脚本并使用此插件运行它即可:
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>Build Go binary</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${basedir}/build-golang-app.sh</executable>
</configuration>
</execution>
</executions>
</plugin>
此Golang plugin的另一个选项是功能更丰富且特定于此问题的enter image description here。但是,对于简单的用例,我仍然会使用Shell脚本。
答案 1 :(得分:1)
有special plugin for maven to build golang projects,它称为mvn-golang-wrapper,there is some example Hello World project to show how to make simple project,a lot of examples can be found in the maven plugin project repository。该插件允许与Maven Central一起使用,并允许通过Maven存储库共享golang项目及其部分,它还具有特殊的系统以与存储库一起使用并通过分支,标记和修订版使用版本。