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 <[email protected]> Authored: Wed Jan 11 01:47:02 2017 +0100 Committer: Paul Merlin <[email protected]> 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
