You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ne...@apache.org on 2011/10/14 03:32:42 UTC

svn commit: r1183191 - in /incubator/kafka/trunk: clients/cpp/ clients/csharp/ clients/csharp/lib/StyleCop/ clients/csharp/src/Kafka/ clients/csharp/src/Kafka/Kafka.Client/ clients/csharp/src/Kafka/Kafka.Client/Properties/ clients/csharp/src/Kafka/Test...

Author: nehanarkhede
Date: Fri Oct 14 01:32:41 2011
New Revision: 1183191

URL: http://svn.apache.org/viewvc?rev=1183191&view=rev
Log:
KAFKA-143 Fixing source code files to have the Apache license header ;patched by nehanarkhede; reviewed by junrao

Modified:
    incubator/kafka/trunk/clients/cpp/configure.ac
    incubator/kafka/trunk/clients/csharp/Settings.StyleCop
    incubator/kafka/trunk/clients/csharp/lib/StyleCop/Microsoft.StyleCop.Targets
    incubator/kafka/trunk/clients/csharp/lib/StyleCop/Settings.StyleCop
    incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.Client/AbstractRequest.cs
    incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.Client/Properties/AssemblyInfo.cs
    incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.FxCop
    incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.sln
    incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/App.config
    incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Config/Debug/App.config
    incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Config/Integration/App.config
    incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Log4Net.config
    incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.Tests/Properties/AssemblyInfo.cs
    incubator/kafka/trunk/clients/ruby/Rakefile
    incubator/kafka/trunk/clients/ruby/kafka-rb.gemspec
    incubator/kafka/trunk/project/plugins/Plugins.scala

Modified: incubator/kafka/trunk/clients/cpp/configure.ac
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/cpp/configure.ac?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/cpp/configure.ac (original)
+++ incubator/kafka/trunk/clients/cpp/configure.ac Fri Oct 14 01:32:41 2011
@@ -1,5 +1,19 @@
 ## LibKafkaConect
 ## A C++ shared libray for connecting to Kafka
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 
 #
 # Warning this is the first time I've made a configure.ac/Makefile.am thing
@@ -25,4 +39,4 @@ AC_CONFIG_MACRO_DIR([build-aux/m4])
 AC_SUBST([KAFKACONNECT_VERSION], [1:0:1])
 
 AC_CONFIG_FILES([Makefile])
-AC_OUTPUT
\ No newline at end of file
+AC_OUTPUT

Modified: incubator/kafka/trunk/clients/csharp/Settings.StyleCop
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/Settings.StyleCop?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/Settings.StyleCop (original)
+++ incubator/kafka/trunk/clients/csharp/Settings.StyleCop Fri Oct 14 01:32:41 2011
@@ -1,3 +1,19 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+ 
+    http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
 <StyleCopSettings Version="4.3">
   <Parsers>
     <Parser ParserId="Microsoft.StyleCop.CSharp.CsParser">

Modified: incubator/kafka/trunk/clients/csharp/lib/StyleCop/Microsoft.StyleCop.Targets
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/lib/StyleCop/Microsoft.StyleCop.Targets?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/lib/StyleCop/Microsoft.StyleCop.Targets (original)
+++ incubator/kafka/trunk/clients/csharp/lib/StyleCop/Microsoft.StyleCop.Targets Fri Oct 14 01:32:41 2011
@@ -1,3 +1,19 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+ 
+    http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
   <!-- Specify where tasks are implemented. -->
   <UsingTask AssemblyFile="Microsoft.StyleCop.dll" TaskName="StyleCopTask"/>

Modified: incubator/kafka/trunk/clients/csharp/lib/StyleCop/Settings.StyleCop
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/lib/StyleCop/Settings.StyleCop?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/lib/StyleCop/Settings.StyleCop (original)
+++ incubator/kafka/trunk/clients/csharp/lib/StyleCop/Settings.StyleCop Fri Oct 14 01:32:41 2011
@@ -1,3 +1,19 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+ 
+    http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
 <StyleCopSettings Version="4.3">
   <Parsers>
     <Parser ParserId="Microsoft.StyleCop.CSharp.CsParser">

Modified: incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.Client/AbstractRequest.cs
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.Client/AbstractRequest.cs?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.Client/AbstractRequest.cs (original)
+++ incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.Client/AbstractRequest.cs Fri Oct 14 01:32:41 2011
@@ -1,4 +1,20 @@
-using System;
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+*/
+using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;

Modified: incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.Client/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.Client/Properties/AssemblyInfo.cs?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.Client/Properties/AssemblyInfo.cs (original)
+++ incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.Client/Properties/AssemblyInfo.cs Fri Oct 14 01:32:41 2011
@@ -1,4 +1,20 @@
-using System;
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+*/
+using System;
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;

Modified: incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.FxCop
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.FxCop?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.FxCop (original)
+++ incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.FxCop Fri Oct 14 01:32:41 2011
@@ -1,3 +1,19 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+ 
+    http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
 <?xml version="1.0" encoding="utf-8"?>
 <FxCopProject Version="10.0" Name="Kafka">
  <ProjectOptions>

Modified: incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.sln
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.sln?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.sln (original)
+++ incubator/kafka/trunk/clients/csharp/src/Kafka/Kafka.sln Fri Oct 14 01:32:41 2011
@@ -1,3 +1,19 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+ 
+    http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
 
 Microsoft Visual Studio Solution File, Format Version 11.00
 # Visual Studio 2010

Modified: incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/App.config
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/App.config?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/App.config (original)
+++ incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/App.config Fri Oct 14 01:32:41 2011
@@ -1,3 +1,19 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+ 
+    http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
 <?xml version="1.0" encoding="utf-8" ?>
 <configuration>
     <configSections>

Modified: incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Config/Debug/App.config
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Config/Debug/App.config?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Config/Debug/App.config (original)
+++ incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Config/Debug/App.config Fri Oct 14 01:32:41 2011
@@ -1,3 +1,19 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+ 
+    http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
 <?xml version="1.0" encoding="utf-8" ?>
 <configuration>
     <configSections>

Modified: incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Config/Integration/App.config
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Config/Integration/App.config?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Config/Integration/App.config (original)
+++ incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Config/Integration/App.config Fri Oct 14 01:32:41 2011
@@ -1,3 +1,19 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+ 
+    http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
 <?xml version="1.0" encoding="utf-8" ?>
 <configuration>
   <configSections>

Modified: incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Log4Net.config
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Log4Net.config?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Log4Net.config (original)
+++ incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.IntegrationTests/Log4Net.config Fri Oct 14 01:32:41 2011
@@ -1,3 +1,19 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+ 
+    http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
 <?xml version="1.0" encoding="utf-8" ?>
 <log4net>
     <root>

Modified: incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.Tests/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.Tests/Properties/AssemblyInfo.cs?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.Tests/Properties/AssemblyInfo.cs (original)
+++ incubator/kafka/trunk/clients/csharp/src/Kafka/Tests/Kafka.Client.Tests/Properties/AssemblyInfo.cs Fri Oct 14 01:32:41 2011
@@ -1,4 +1,20 @@
-using System.Reflection;
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+*/
+using System.Reflection;
 using System.Runtime.InteropServices;
 
 // General Information about an assembly is controlled through the following 

Modified: incubator/kafka/trunk/clients/ruby/Rakefile
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/ruby/Rakefile?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/ruby/Rakefile (original)
+++ incubator/kafka/trunk/clients/ruby/Rakefile Fri Oct 14 01:32:41 2011
@@ -1,3 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require 'rubygems'
 require 'rake/gempackagetask'
 require 'rubygems/specification'

Modified: incubator/kafka/trunk/clients/ruby/kafka-rb.gemspec
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/clients/ruby/kafka-rb.gemspec?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/clients/ruby/kafka-rb.gemspec (original)
+++ incubator/kafka/trunk/clients/ruby/kafka-rb.gemspec Fri Oct 14 01:32:41 2011
@@ -1,4 +1,18 @@
 # -*- encoding: utf-8 -*-
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 
 Gem::Specification.new do |s|
   s.name = %q{kafka-rb}

Modified: incubator/kafka/trunk/project/plugins/Plugins.scala
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/project/plugins/Plugins.scala?rev=1183191&r1=1183190&r2=1183191&view=diff
==============================================================================
--- incubator/kafka/trunk/project/plugins/Plugins.scala (original)
+++ incubator/kafka/trunk/project/plugins/Plugins.scala Fri Oct 14 01:32:41 2011
@@ -1,3 +1,20 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 import sbt._
 
 class Plugins(info: ProjectInfo) extends PluginDefinition(info) {