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。これを上書きできますか? 私のプロジェクト ソースは純粋な Java であるため、名前から Scala バージョンを削除したいだけです。
sbt package
recentusers_2.9.1-0.1.jar
純粋な Java プロジェクトの場合は、次を使用します。
crossPaths := false
アーティファクトまたはパスのバージョンをまたがらないようにします。
autoScalaLibrary := false
Scala ライブラリへの依存関係を自動的に追加しないようにします。