KAFKA-1133 LICENSE and NOTICE files need to get into META-INF when jars are built before they're signed for publishing to maven reviewed by Joel Koshy

This commit is contained in:
Joe Stein 2013-11-24 21:35:10 -05:00
parent 59a0c79ea6
commit 15bb3961d9
1 changed files with 3 additions and 1 deletions

View File

@ -71,7 +71,9 @@ object KafkaBuild extends Build {
<exclude org="log4j" module="log4j"/> <exclude org="log4j" module="log4j"/>
<exclude org="jline" module="jline"/> <exclude org="jline" module="jline"/>
</dependency> </dependency>
</dependencies> </dependencies>,
mappings in packageBin in Compile += file("LICENSE") -> "LICENSE",
mappings in packageBin in Compile += file("NOTICE") -> "NOTICE"
) )
val hadoopSettings = Seq( val hadoopSettings = Seq(