Windows 版 SBT 中 unmanagedSources 参数的语法是什么?

发布于 2024-12-06 02:05:12 字数 403 浏览 0 评论 0原文

首先,我的非托管源代码不在标准结构中。它是:

src/com/domain/...

而不是

src/main/java/com/domain/...

这会导致任何问题吗?

其次,我尝试了一些选项,包括

unmanagedSources in Compile += file("c:/codebase/src")
unmanagedSources in Compile += file("/codebase/src")
unmanagedSources in Compile += file("c:\\codebase\\src")

对于上述所有选项,我收到“无法找到”错误

Firstly my unmanaged source is not in the standard structure. It is:

src/com/domain/...

instead of

src/main/java/com/domain/...

Would this cause any problems?

Secondly I have tried a few options including

unmanagedSources in Compile += file("c:/codebase/src")
unmanagedSources in Compile += file("/codebase/src")
unmanagedSources in Compile += file("c:\\codebase\\src")

For all the above I get 'could not be found' errors

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

杀手六號 2024-12-13 02:05:12

只要正确配置,它就不会引起问题。您可以在项目设置中尝试类似以下内容:


unmanagedSourceDirectories in Compile <+= baseDirectory{ _ / "src"}

baseDirectory,顾名思义,是项目的基本目录,请参阅 Keys 类

It should not cause problems, as long as you configure it correctly. You could try something like the following in your project settings:


unmanagedSourceDirectories in Compile <+= baseDirectory{ _ / "src"}

baseDirectory, as the name implies, is the base directory of your project, see the Keys class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文