Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个构建 jar 的 sbt 项目,除了生成的文件名sbt package是recentusers_2.9.1-0.1.jar. 我可以覆盖这个吗?我只想从名称中删除 Scala 版本,因为我的项目源是纯 Java。
sbt package
recentusers_2.9.1-0.1.jar
对于纯 Java 项目,请使用:
crossPaths := false
不跨版本工件或路径,并且:
autoScalaLibrary := false
不自动添加对 Scala 库的依赖项。