You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by jg...@apache.org on 2014/03/25 00:47:31 UTC

git commit: SAMZA-187: Add ASF headers to hello-samza files and directions for contributing.

Repository: incubator-samza-hello-samza
Updated Branches:
  refs/heads/master 7c177f4e6 -> 24acf2226


SAMZA-187: Add ASF headers to hello-samza files and directions for contributing.


Project: http://git-wip-us.apache.org/repos/asf/incubator-samza-hello-samza/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-samza-hello-samza/commit/24acf222
Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza-hello-samza/tree/24acf222
Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza-hello-samza/diff/24acf222

Branch: refs/heads/master
Commit: 24acf2226900e7f83c6c85e4e06c9bd68b41329d
Parents: 7c177f4
Author: Jakob Homan <jg...@gmail.com>
Authored: Mon Mar 24 16:44:49 2014 -0700
Committer: Jakob Homan <jg...@gmail.com>
Committed: Mon Mar 24 16:44:49 2014 -0700

----------------------------------------------------------------------
 .gitignore                | 14 ++++++++++++++
 README.md                 |  7 ++++++-
 bin/grid                  | 16 ++++++++++++++++
 pom.xml                   | 18 ++++++++++++++++++
 samza-job-package/pom.xml | 18 ++++++++++++++++++
 samza-wikipedia/pom.xml   | 18 ++++++++++++++++++
 vagrant/bootstrap.sh      |  4 ++--
 7 files changed, 92 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-samza-hello-samza/blob/24acf222/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 68bf3bc..1898309 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,17 @@
+# 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.
 *.class
 *.war
 *.ear

http://git-wip-us.apache.org/repos/asf/incubator-samza-hello-samza/blob/24acf222/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 6801237..eca7254 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,15 @@
 hello-samza
 ===========
 
-Hello Samza is a starter project for Samza jobs.
+Hello Samza is a starter project for Apache Samza (Incubating) jobs.
 
 Please see [Hello Samza](http://samza.incubator.apache.org/) to get started.
 
+### Pull requests and questions
+Hello Samza is developed as part of the Apache Samza project. Please direct questions, improvements and
+bug fixes there.  Questions about Hello Samza are welcome on the dev list (details on the main
+site above) and the Samza JIRA has a hello-samza component for filing tickets.
+
 ### Using Vagrant
 
 If you'd like to use Vagrant to get up and running, follow these instructions.

http://git-wip-us.apache.org/repos/asf/incubator-samza-hello-samza/blob/24acf222/bin/grid
----------------------------------------------------------------------
diff --git a/bin/grid b/bin/grid
index 97d7003..9f520b6 100755
--- a/bin/grid
+++ b/bin/grid
@@ -1,4 +1,20 @@
 #!/bin/bash -e
+# 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.
 
 # This script will download, setup, start, and stop servers for Kafka, YARN, and ZooKeeper,
 # as well as downloading, building and locally publishing Samza

http://git-wip-us.apache.org/repos/asf/incubator-samza-hello-samza/blob/24acf222/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 50eddef..6815cce 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,4 +1,22 @@
 <?xml version="1.0" 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.
+-->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-samza-hello-samza/blob/24acf222/samza-job-package/pom.xml
----------------------------------------------------------------------
diff --git a/samza-job-package/pom.xml b/samza-job-package/pom.xml
index fe84f91..5dafbfc 100644
--- a/samza-job-package/pom.xml
+++ b/samza-job-package/pom.xml
@@ -1,4 +1,22 @@
 <?xml version="1.0" 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.
+-->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-samza-hello-samza/blob/24acf222/samza-wikipedia/pom.xml
----------------------------------------------------------------------
diff --git a/samza-wikipedia/pom.xml b/samza-wikipedia/pom.xml
index 847cef6..20d94ed 100644
--- a/samza-wikipedia/pom.xml
+++ b/samza-wikipedia/pom.xml
@@ -1,4 +1,22 @@
 <?xml version="1.0" 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.
+-->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-samza-hello-samza/blob/24acf222/vagrant/bootstrap.sh
----------------------------------------------------------------------
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh
index f5b843e..0631f78 100644
--- a/vagrant/bootstrap.sh
+++ b/vagrant/bootstrap.sh
@@ -1,10 +1,11 @@
+#!/bin/bash -x -e
 # 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
@@ -13,7 +14,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-#!/bin/bash -x -e
 apt-get -y update
 apt-get install -y software-properties-common python-software-properties
 add-apt-repository -y ppa:webupd8team/java