You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by jo...@apache.org on 2013/11/20 23:16:09 UTC

git commit: KAFKA-1131 copy license and notice to the release files, reviewed by David Arthur

Updated Branches:
  refs/heads/0.8 98568ccce -> 59a0c79ea


KAFKA-1131 copy license and notice to the release files, reviewed by David Arthur


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/59a0c79e
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/59a0c79e
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/59a0c79e

Branch: refs/heads/0.8
Commit: 59a0c79ea6714b4d8a6525cc77ee4d0fc653603a
Parents: 98568cc
Author: Joe Stein <jo...@stealth.ly>
Authored: Wed Nov 20 15:15:53 2013 -0700
Committer: Joe Stein <jo...@stealth.ly>
Committed: Wed Nov 20 15:15:53 2013 -0700

----------------------------------------------------------------------
 project/Build.scala | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/59a0c79e/project/Build.scala
----------------------------------------------------------------------
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 @@ object KafkaBuild extends Build {
       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")