gpt4 book ai didi

scala - 在 Maven 生成的包中包含 scala-library.jar

转载 作者:行者123 更新时间:2023-12-04 15:53:19 25 4
gpt4 key购买 nike

我想使用 Maven 来包含运行我编写的任何 Scala 程序所需的所有依赖项。我想这至少意味着 scala-library.jar 以及我可能使用的任何库。

我不介意这些依赖项存储在哪里(在生成的 JAR 内部或外部),我只是在寻找一种解决方案,该解决方案可以设置 list 文件类路径之类的内容,并且通常需要最少的手动干预和样板配置。

谢谢。

最佳答案

您可以使用 jar-with-dependencies descriptor format 附带的 Assembly plugin :

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>

当您运行 mvn assembly:assembly 时,您将在 target 目录中获得一个包含所有依赖项(包括任何必要的 Scala 库)的 jar。

关于scala - 在 Maven 生成的包中包含 scala-library.jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3559717/

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