KAFKA-1131 copy license and notice to the release files, reviewed by David Arthur
diff --git a/project/Build.scala b/project/Build.scala
index bcd1ca5..848e7a2 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -113,6 +113,8 @@
       val jarFiles = deps.files.filter(f => !products.files.contains(f) && f.getName.endsWith(".jar"))
       val destination = target / "RELEASE" / releaseName
       IO.copyFile(packageBin, destination / packageBin.getName)
+      IO.copyFile(file("LICENSE"), destination / "LICENSE")
+      IO.copyFile(file("NOTICE"), destination / "NOTICE")      
       IO.copy(jarFiles.map { f => (f, destination / "libs" / f.getName) })
       IO.copyDirectory(file("config"), destination / "config")
       IO.copyDirectory(file("bin"), destination / "bin")