gpt4 book ai didi

maven - 使用来自 maven 的 sbt

转载 作者:行者123 更新时间:2023-12-02 00:08:38 25 4
gpt4 key购买 nike

我有一个 maven 项目和一个 SBT 项目作为 maven 项目的一个模块。我需要创建一个命令 Maven 构建,它也执行 SBT 包任务。

是否有任何插件可用于将 SBT 与 maven 集成?

谢谢。

最佳答案

一种选择是使用“Exec Maven Plugin”,这里是一个“play compile”的例子

  <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>${path.to.play}</executable>
<workingDirectory>${path.to.project.root}</workingDirectory>
<arguments>
<argument>compile</argument>
</arguments>
</configuration>
</plugin>

关于maven - 使用来自 maven 的 sbt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16784190/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com