在SBT上使用maven插件
有没有办法在 SBT 上使用 Maven 插件?
Is there anyway to use a maven plugin on SBT?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法在 SBT 上使用 Maven 插件?
Is there anyway to use a maven plugin on SBT?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
不。 sbt 确实通过 sbt-pom-reader 以有限的方式支持 pom.xml,但是我们不支持使用 Maven 插件。它有自己的插件生态系统,所以也许您可以找到类似的插件来完成这项工作。
如果您需要将 Maven 插件作为库引入,则需要以下设置:
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:
maven 插件是一个
jar
文件,但打包的是maven-plugin
,而不是通常的jar
。但显然,由于某种原因,SBT 不喜欢它或没有找到它。尝试强制 URL,如下所示:根据我的经验,
classpathTypes += "maven-plugin"
似乎不是必需的,但我想可能是因为您正在下载的资源不是.jar
或 SBT 知道应该参与 CLASSPATH 的其他文件扩展名。A maven plugin is a
jar
file, but with packagingmaven-plugin
, notjar
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: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.