在SBT上使用maven插件

发布于 2024-10-29 21:34:04 字数 31 浏览 0 评论 0原文

有没有办法在 SBT 上使用 Maven 插件?

Is there anyway to use a maven plugin on SBT?

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

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

发布评论

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

评论(2

同展鸳鸯锦 2024-11-05 21:34:04

不。 sbt 确实通过 sbt-pom-reader 以有限的方式支持 pom.xml,但是我们不支持使用 Maven 插件。它有自己的插件生态系统,所以也许您可以找到类似的插件来完成这项工作。

如果您需要将 Maven 插件作为库引入,则需要以下设置:

classpathTypes += "maven-plugin"

No. sbt does support pom.xml in limited way via sbt-pom-reader, but we do not support the use of maven plugins. It has its own plugin ecosystem, so maybe you could find similar one that does the job.

If you need to pull in Maven plugin as a library, you would need this setting:

classpathTypes += "maven-plugin"
我恋#小黄人 2024-11-05 21:34:04

maven 插件是一个 jar 文件,但打包的是 maven-plugin,而不是通常的 jar。但显然,由于某种原因,SBT 不喜欢它或没有找到它。尝试强制 URL,如下所示:

libraryDependencies ++=
  Seq (
    "com.example" % "myartifact" % "1.59" from
           "http://server:8081/artifactory/plugins-release-local/" +
           "com/example/myartifact/1.59/myartifact-1.59.jar" )

根据我的经验,classpathTypes += "maven-plugin" 似乎不是必需的,但我想可能是因为您正在下载的资源不是 .jar 或 SBT 知道应该参与 CLASSPATH 的其他文件扩展名。

A maven plugin is a jar file, but with packaging maven-plugin, not jar as it would be usual. But, apparently, SBT does not like it or does not find it, for some reason. Try forcing the URL, like this:

libraryDependencies ++=
  Seq (
    "com.example" % "myartifact" % "1.59" from
           "http://server:8081/artifactory/plugins-release-local/" +
           "com/example/myartifact/1.59/myartifact-1.59.jar" )

From my experience, classpathTypes += "maven-plugin" seems not to be necessary but I guess it might be in case the resource you are downloading is not a .jar or other file extensions SBT knows that should participate in the CLASSPATH.

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