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.
Gradle を使用して lib フォルダーにすべての依存関係を含む Hadoop jar を作成するにはどうすればよいですか? 基本的に、fatjar が行うことと同様です。
理解した!Hadoop は、最終的な jar の「lib」フォルダー内でライブラリーを探します。そこで、「jar」タスクに以下を追加します。
jar { doFirst { into('lib') { from configurations.runtime } } }