使用 SBT 将生成的 JAR 文件发布到 Maven

发布于 2024-11-14 11:45:01 字数 364 浏览 2 评论 0原文

我有一个 SBT 项目,它使用一些外部工具创建一个 JAR 文件(一切正常),即它不编译源代码。我已经使用正确的凭据正确配置了 Maven 存储库,但我正在努力弄清楚如何配置该工件,以便它发布生成的 JAR 文件。

我的 JAR 文件是“target/my.jar”。

我已重写工件,如下所示:

override def artifacts = Set(Artifact("my.jar", "jar", "jar"))

发布输出以下内容

使用默认值未找到依赖项配置。 [info] :: 发布 :: org.foo#my-project_2.9.0

谁能用这个简洁的工具为我指明正确的方向?

谢谢!

I have an SBT Project that creates a JAR file using some external tool (all working fine), i.e. it's not compiling source code. I have the Maven Repo correctly configured with correct Credentials but I am struggling to figure out how to configure the artifact so it publishes the generated JAR file.

My JAR file is "target/my.jar".

I've overridden artifacts as follows:

override def artifacts = Set(Artifact("my.jar", "jar", "jar"))

publish outputs the following

No dependency configuration found, using defaults.
[info] :: publishing :: org.foo#my-project_2.9.0

Can anyone point me in the right direction with this neat tool?

Thanks!

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

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

发布评论

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

评论(1

她比我温柔 2024-11-21 11:45:01

您是否像这样设置了publishTo:

 override def managedStyle = ManagedStyle.Maven
 val publishTo = "My Repo" at "http://foo.bar/content/repositories/releases"

然后运行“发布”操作。您还可以“发布本地”。

Did you set up the publishTo like this:

 override def managedStyle = ManagedStyle.Maven
 val publishTo = "My Repo" at "http://foo.bar/content/repositories/releases"

Then you run the 'publish' action. You can also do 'publish local'.

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