Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 53BD3200C1C for ; Wed, 11 Jan 2017 01:49:45 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 50EC1160B3D; Wed, 11 Jan 2017 00:49:45 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 729B1160B4B for ; Wed, 11 Jan 2017 01:49:44 +0100 (CET) Received: (qmail 92402 invoked by uid 500); 11 Jan 2017 00:49:43 -0000 Mailing-List: contact commits-help@polygene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@polygene.apache.org Delivered-To: mailing list commits@polygene.apache.org Received: (qmail 92363 invoked by uid 99); 11 Jan 2017 00:49:43 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jan 2017 00:49:43 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7CB72DF9E6; Wed, 11 Jan 2017 00:49:43 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: paulmerlin@apache.org To: commits@polygene.apache.org Date: Wed, 11 Jan 2017 00:49:44 -0000 Message-Id: <879016344ac748b7932ca5dc282d7a7a@git.apache.org> In-Reply-To: <24c9786f85e64552a8b7972c1d402dad@git.apache.org> References: <24c9786f85e64552a8b7972c1d402dad@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] polygene-java git commit: POLYGENE-221 Add missing license headers archived-at: Wed, 11 Jan 2017 00:49:45 -0000 POLYGENE-221 Add missing license headers Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/21c6a0b2 Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/21c6a0b2 Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/21c6a0b2 Branch: refs/heads/develop Commit: 21c6a0b20ca36c918a08e05f572f99e168e66e40 Parents: 9a7a2d3 Author: Paul Merlin Authored: Wed Jan 11 01:47:02 2017 +0100 Committer: Paul Merlin Committed: Wed Jan 11 01:47:02 2017 +0100 ---------------------------------------------------------------------- .../src/main/docker/memcached/Dockerfile | 15 +++++++++++++++ .../src/main/docker/mysql/Dockerfile | 15 +++++++++++++++ .../src/main/docker/postgres/Dockerfile | 15 +++++++++++++++ .../src/main/docker/postgres/init-test-db.sh | 15 +++++++++++++++ .../src/main/docker/redis/Dockerfile | 15 +++++++++++++++ .../src/main/docker/riak/Dockerfile | 15 +++++++++++++++ 6 files changed, 90 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/21c6a0b2/internals/testsupport-internal/src/main/docker/memcached/Dockerfile ---------------------------------------------------------------------- diff --git a/internals/testsupport-internal/src/main/docker/memcached/Dockerfile b/internals/testsupport-internal/src/main/docker/memcached/Dockerfile index dd2ef40..d9e7020 100644 --- a/internals/testsupport-internal/src/main/docker/memcached/Dockerfile +++ b/internals/testsupport-internal/src/main/docker/memcached/Dockerfile @@ -1 +1,16 @@ +# 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. + FROM memcached:alpine http://git-wip-us.apache.org/repos/asf/polygene-java/blob/21c6a0b2/internals/testsupport-internal/src/main/docker/mysql/Dockerfile ---------------------------------------------------------------------- diff --git a/internals/testsupport-internal/src/main/docker/mysql/Dockerfile b/internals/testsupport-internal/src/main/docker/mysql/Dockerfile index f0169e9..4e5c49c 100644 --- a/internals/testsupport-internal/src/main/docker/mysql/Dockerfile +++ b/internals/testsupport-internal/src/main/docker/mysql/Dockerfile @@ -1 +1,16 @@ +# 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. + FROM mariadb:latest \ No newline at end of file http://git-wip-us.apache.org/repos/asf/polygene-java/blob/21c6a0b2/internals/testsupport-internal/src/main/docker/postgres/Dockerfile ---------------------------------------------------------------------- diff --git a/internals/testsupport-internal/src/main/docker/postgres/Dockerfile b/internals/testsupport-internal/src/main/docker/postgres/Dockerfile index e17d095..90bcffe 100644 --- a/internals/testsupport-internal/src/main/docker/postgres/Dockerfile +++ b/internals/testsupport-internal/src/main/docker/postgres/Dockerfile @@ -1,2 +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. + FROM postgres:alpine COPY init-test-db.sh /docker-entrypoint-initdb.d/init-test-db.sh http://git-wip-us.apache.org/repos/asf/polygene-java/blob/21c6a0b2/internals/testsupport-internal/src/main/docker/postgres/init-test-db.sh ---------------------------------------------------------------------- diff --git a/internals/testsupport-internal/src/main/docker/postgres/init-test-db.sh b/internals/testsupport-internal/src/main/docker/postgres/init-test-db.sh index 2c0c759..347d78d 100755 --- a/internals/testsupport-internal/src/main/docker/postgres/init-test-db.sh +++ b/internals/testsupport-internal/src/main/docker/postgres/init-test-db.sh @@ -1,4 +1,19 @@ #!/bin/sh +# 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 # Create test user and database http://git-wip-us.apache.org/repos/asf/polygene-java/blob/21c6a0b2/internals/testsupport-internal/src/main/docker/redis/Dockerfile ---------------------------------------------------------------------- diff --git a/internals/testsupport-internal/src/main/docker/redis/Dockerfile b/internals/testsupport-internal/src/main/docker/redis/Dockerfile index 058f6b2..74a7806 100644 --- a/internals/testsupport-internal/src/main/docker/redis/Dockerfile +++ b/internals/testsupport-internal/src/main/docker/redis/Dockerfile @@ -1 +1,16 @@ +# 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. + FROM redis:alpine http://git-wip-us.apache.org/repos/asf/polygene-java/blob/21c6a0b2/internals/testsupport-internal/src/main/docker/riak/Dockerfile ---------------------------------------------------------------------- diff --git a/internals/testsupport-internal/src/main/docker/riak/Dockerfile b/internals/testsupport-internal/src/main/docker/riak/Dockerfile index 7e1ebfa..e02ba9b 100644 --- a/internals/testsupport-internal/src/main/docker/riak/Dockerfile +++ b/internals/testsupport-internal/src/main/docker/riak/Dockerfile @@ -1 +1,16 @@ +# 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. + FROM basho/riak-kv:latest