From commits-return-3766-archive-asf-public=cust-asf.ponee.io@openwhisk.apache.org Fri Mar 2 20:46:06 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 1C72918062F for ; Fri, 2 Mar 2018 20:46:04 +0100 (CET) Received: (qmail 98703 invoked by uid 500); 2 Mar 2018 19:46:04 -0000 Mailing-List: contact commits-help@openwhisk.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openwhisk.apache.org Delivered-To: mailing list commits@openwhisk.apache.org Received: (qmail 98694 invoked by uid 99); 2 Mar 2018 19:46:04 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Mar 2018 19:46:04 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 99DB682868; Fri, 2 Mar 2018 19:46:03 +0000 (UTC) Date: Fri, 02 Mar 2018 19:46:03 +0000 To: "commits@openwhisk.apache.org" Subject: [incubator-openwhisk-runtime-swift] branch master updated: Add license headers (#28) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <152001996357.5266.6398698865996156246@gitbox.apache.org> From: csantanapr@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-openwhisk-runtime-swift X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: f9e994157233d1e6712b6f118c816d70769198b9 X-Git-Newrev: cc0853ab47e637a2575e547e19c84b9a155e4dbf X-Git-Rev: cc0853ab47e637a2575e547e19c84b9a155e4dbf X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. csantanapr pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-runtime-swift.git The following commit(s) were added to refs/heads/master by this push: new cc0853a Add license headers (#28) cc0853a is described below commit cc0853ab47e637a2575e547e19c84b9a155e4dbf Author: Vincent AuthorDate: Fri Mar 2 14:46:00 2018 -0500 Add license headers (#28) --- .travis.yml | 16 ++++++++++++++++ README.md | 18 ++++++++++++++++++ core/swift40Action/epilogue.swift | 17 +++++++++++++++++ gradle/README.md | 18 ++++++++++++++++++ tools/build/compile.sh | 17 +++++++++++++++++ tools/travis/build.sh | 17 +++++++++++++++++ tools/travis/deploy.sh | 17 +++++++++++++++++ tools/travis/publish.sh | 17 +++++++++++++++++ tools/travis/setup.sh | 17 +++++++++++++++++ tools/travis/test.sh | 17 +++++++++++++++++ 10 files changed, 171 insertions(+) diff --git a/.travis.yml b/.travis.yml index 28f0c12..5f95c61 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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. +# + sudo: required group: deprecated-2017Q3 language: scala diff --git a/README.md b/README.md index 2ae5780..82dd6f7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,21 @@ + + # Apache OpenWhisk runtimes for swift [![Build Status](https://travis-ci.org/apache/incubator-openwhisk-runtime-swift.svg?branch=master)](https://travis-ci.org/apache/incubator-openwhisk-runtime-swift) diff --git a/core/swift40Action/epilogue.swift b/core/swift40Action/epilogue.swift index 17a4fb3..fcd52d1 100644 --- a/core/swift40Action/epilogue.swift +++ b/core/swift40Action/epilogue.swift @@ -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. + */ + // Imports import Foundation diff --git a/gradle/README.md b/gradle/README.md index 6de4f54..5b83fdb 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -1,3 +1,21 @@ + + # Gradle Gradle is used to build OpenWhisk. It does not need to be pre-installed as it installs itself using the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html). To use it without installing, simply invoke the `gradlew` command at the root of the repository. You can also install `gradle` via [`apt`](http://linuxg.net/how-to-install-gradle-2-1-on-ubuntu-14-10-ubuntu-14-04-ubuntu-12-04-and-derivatives/) on Ubuntu or [`brew`](http://www.brewformulas.org/Gradle) on Mac [...] diff --git a/tools/build/compile.sh b/tools/build/compile.sh index 952feeb..08c5523 100755 --- a/tools/build/compile.sh +++ b/tools/build/compile.sh @@ -1,4 +1,21 @@ #!/bin/bash +# +# 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. +# + set -e if [ -z "$1" ] ; then diff --git a/tools/travis/build.sh b/tools/travis/build.sh index 7f87bbb..2293a54 100755 --- a/tools/travis/build.sh +++ b/tools/travis/build.sh @@ -1,4 +1,21 @@ #!/bin/bash +# +# 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. +# + set -ex # Build script for Travis-CI. diff --git a/tools/travis/deploy.sh b/tools/travis/deploy.sh index e8c9a6b..c0fbd9d 100755 --- a/tools/travis/deploy.sh +++ b/tools/travis/deploy.sh @@ -1,4 +1,21 @@ #!/bin/bash +# +# 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. +# + set -ex # Build script for Travis-CI. diff --git a/tools/travis/publish.sh b/tools/travis/publish.sh index ce6f369..480e782 100755 --- a/tools/travis/publish.sh +++ b/tools/travis/publish.sh @@ -1,4 +1,21 @@ #!/bin/bash +# +# 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. +# + set -eux # Build script for Travis-CI. diff --git a/tools/travis/setup.sh b/tools/travis/setup.sh index adf859a..1da8c03 100755 --- a/tools/travis/setup.sh +++ b/tools/travis/setup.sh @@ -1,4 +1,21 @@ #!/bin/bash +# +# 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. +# + set -e # Build script for Travis-CI. diff --git a/tools/travis/test.sh b/tools/travis/test.sh index bdcc407..05d080e 100755 --- a/tools/travis/test.sh +++ b/tools/travis/test.sh @@ -1,4 +1,21 @@ #!/bin/bash +# +# 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. +# + set -ex # Build script for Travis-CI. -- To stop receiving notification emails like this one, please contact csantanapr@apache.org.