From 9b509141fd289ad6e241ab1a314b7cae8bec1e28 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Fri, 22 Mar 2024 20:04:29 +0100 Subject: [PATCH] use ASF header --- LICENSE | 5 +++-- build.sbt | 17 +++++++++++++++++ project/build.properties | 2 +- project/plugins.sbt | 17 +++++++++++++++++ .../pjfanning/pekkohttpspi/TestBase.scala | 13 +++++++------ .../pekkohttpspi/dynamodb/ITTestDynamoDB.scala | 13 +++++++------ .../pekkohttpspi/kinesis/ITTestKinesis.scala | 13 +++++++------ .../pjfanning/pekkohttpspi/s3/ITTestS3.scala | 13 +++++++------ .../pjfanning/pekkohttpspi/sqs/ITTestSQS.scala | 13 +++++++------ .../pekkohttpspi/FutureConverters.scala | 17 +++++++++++++++++ .../pekkohttpspi/OptionConverters.scala | 17 +++++++++++++++++ .../pekkohttpspi/FutureConverters.scala | 17 +++++++++++++++++ .../pekkohttpspi/OptionConverters.scala | 17 +++++++++++++++++ .../pekkohttpspi/FutureConverters.scala | 17 +++++++++++++++++ .../pekkohttpspi/OptionConverters.scala | 17 +++++++++++++++++ .../PekkoHttpAsyncHttpService.scala | 13 +++++++------ .../pekkohttpspi/PekkoHttpClient.scala | 13 +++++++------ .../pjfanning/pekkohttpspi/RequestRunner.scala | 13 +++++++------ .../pjfanning/pekkohttpspi/s3/S3Test.java | 13 +++++++------ .../pekkohttpspi/BaseAwsClientTest.scala | 13 +++++++------ .../pekkohttpspi/PekkoHttpClientSpec.scala | 13 +++++++------ .../pekkohttpspi/RequestRunnerSpec.scala | 13 +++++++------ .../pekkohttpspi/dynamodb/TestDynamoDB.scala | 13 +++++++------ .../pjfanning/pekkohttpspi/s3/TestS3.scala | 13 +++++++------ .../pjfanning/pekkohttpspi/sns/TestSNS.scala | 13 +++++++------ .../pjfanning/pekkohttpspi/sqs/TestSQS.scala | 13 +++++++------ .../LocalStackReadyLogWaitStrategy.scala | 13 +++++++------ .../testcontainers/TimeoutWaitStrategy.scala | 13 +++++++------ 28 files changed, 266 insertions(+), 111 deletions(-) diff --git a/LICENSE b/LICENSE index 2e5d50c..d645695 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,5 @@ -Apache License + + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -186,7 +187,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018 Matthias Lüneberg + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/build.sbt b/build.sbt index ac7e9d9..c716313 100644 --- a/build.sbt +++ b/build.sbt @@ -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. + */ + ThisBuild / organization := "com.github.pjfanning" ThisBuild / crossScalaVersions := List("2.12.18", "2.13.12", "3.3.1") ThisBuild / scalaVersion := "2.13.12" diff --git a/project/build.properties b/project/build.properties index e8a1e24..04267b1 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.9 diff --git a/project/plugins.sbt b/project/plugins.sbt index 4e813b0..c7d8f3f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -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. + */ + addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.22.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") diff --git a/src/it/scala/com/github/pjfanning/pekkohttpspi/TestBase.scala b/src/it/scala/com/github/pjfanning/pekkohttpspi/TestBase.scala index 4382a61..a24b8b9 100644 --- a/src/it/scala/com/github/pjfanning/pekkohttpspi/TestBase.scala +++ b/src/it/scala/com/github/pjfanning/pekkohttpspi/TestBase.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/it/scala/com/github/pjfanning/pekkohttpspi/dynamodb/ITTestDynamoDB.scala b/src/it/scala/com/github/pjfanning/pekkohttpspi/dynamodb/ITTestDynamoDB.scala index 51a9b36..83df612 100644 --- a/src/it/scala/com/github/pjfanning/pekkohttpspi/dynamodb/ITTestDynamoDB.scala +++ b/src/it/scala/com/github/pjfanning/pekkohttpspi/dynamodb/ITTestDynamoDB.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/it/scala/com/github/pjfanning/pekkohttpspi/kinesis/ITTestKinesis.scala b/src/it/scala/com/github/pjfanning/pekkohttpspi/kinesis/ITTestKinesis.scala index 559623e..9cc8ef1 100644 --- a/src/it/scala/com/github/pjfanning/pekkohttpspi/kinesis/ITTestKinesis.scala +++ b/src/it/scala/com/github/pjfanning/pekkohttpspi/kinesis/ITTestKinesis.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/it/scala/com/github/pjfanning/pekkohttpspi/s3/ITTestS3.scala b/src/it/scala/com/github/pjfanning/pekkohttpspi/s3/ITTestS3.scala index dbbfe01..c8b4cce 100644 --- a/src/it/scala/com/github/pjfanning/pekkohttpspi/s3/ITTestS3.scala +++ b/src/it/scala/com/github/pjfanning/pekkohttpspi/s3/ITTestS3.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/it/scala/com/github/pjfanning/pekkohttpspi/sqs/ITTestSQS.scala b/src/it/scala/com/github/pjfanning/pekkohttpspi/sqs/ITTestSQS.scala index 5938d34..954d2d4 100644 --- a/src/it/scala/com/github/pjfanning/pekkohttpspi/sqs/ITTestSQS.scala +++ b/src/it/scala/com/github/pjfanning/pekkohttpspi/sqs/ITTestSQS.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/main/scala-2.12/com/github/pjfanning/pekkohttpspi/FutureConverters.scala b/src/main/scala-2.12/com/github/pjfanning/pekkohttpspi/FutureConverters.scala index 6bd2279..6e02c2f 100644 --- a/src/main/scala-2.12/com/github/pjfanning/pekkohttpspi/FutureConverters.scala +++ b/src/main/scala-2.12/com/github/pjfanning/pekkohttpspi/FutureConverters.scala @@ -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. + */ + package com.github.pjfanning.pekkohttpspi import java.util.concurrent.CompletionStage diff --git a/src/main/scala-2.12/com/github/pjfanning/pekkohttpspi/OptionConverters.scala b/src/main/scala-2.12/com/github/pjfanning/pekkohttpspi/OptionConverters.scala index ab6a4a9..718c8f5 100644 --- a/src/main/scala-2.12/com/github/pjfanning/pekkohttpspi/OptionConverters.scala +++ b/src/main/scala-2.12/com/github/pjfanning/pekkohttpspi/OptionConverters.scala @@ -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. + */ + package com.github.pjfanning.pekkohttpspi import java.util.Optional diff --git a/src/main/scala-2.13/com/github/pjfanning/pekkohttpspi/FutureConverters.scala b/src/main/scala-2.13/com/github/pjfanning/pekkohttpspi/FutureConverters.scala index eecc9ca..dc573cc 100644 --- a/src/main/scala-2.13/com/github/pjfanning/pekkohttpspi/FutureConverters.scala +++ b/src/main/scala-2.13/com/github/pjfanning/pekkohttpspi/FutureConverters.scala @@ -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. + */ + package com.github.pjfanning.pekkohttpspi import java.util.concurrent.CompletionStage diff --git a/src/main/scala-2.13/com/github/pjfanning/pekkohttpspi/OptionConverters.scala b/src/main/scala-2.13/com/github/pjfanning/pekkohttpspi/OptionConverters.scala index 4c13897..be2b554 100644 --- a/src/main/scala-2.13/com/github/pjfanning/pekkohttpspi/OptionConverters.scala +++ b/src/main/scala-2.13/com/github/pjfanning/pekkohttpspi/OptionConverters.scala @@ -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. + */ + package com.github.pjfanning.pekkohttpspi import java.util.Optional diff --git a/src/main/scala-3/com/github/pjfanning/pekkohttpspi/FutureConverters.scala b/src/main/scala-3/com/github/pjfanning/pekkohttpspi/FutureConverters.scala index c387279..a810d39 100644 --- a/src/main/scala-3/com/github/pjfanning/pekkohttpspi/FutureConverters.scala +++ b/src/main/scala-3/com/github/pjfanning/pekkohttpspi/FutureConverters.scala @@ -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. + */ + package com.github.pjfanning.pekkohttpspi import java.util.concurrent.CompletionStage diff --git a/src/main/scala-3/com/github/pjfanning/pekkohttpspi/OptionConverters.scala b/src/main/scala-3/com/github/pjfanning/pekkohttpspi/OptionConverters.scala index c546942..b89028c 100644 --- a/src/main/scala-3/com/github/pjfanning/pekkohttpspi/OptionConverters.scala +++ b/src/main/scala-3/com/github/pjfanning/pekkohttpspi/OptionConverters.scala @@ -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. + */ + package com.github.pjfanning.pekkohttpspi import java.util.Optional diff --git a/src/main/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpAsyncHttpService.scala b/src/main/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpAsyncHttpService.scala index 7cb60df..abbf701 100644 --- a/src/main/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpAsyncHttpService.scala +++ b/src/main/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpAsyncHttpService.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/main/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpClient.scala b/src/main/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpClient.scala index 467cf02..e1bd454 100644 --- a/src/main/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpClient.scala +++ b/src/main/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpClient.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/main/scala/com/github/pjfanning/pekkohttpspi/RequestRunner.scala b/src/main/scala/com/github/pjfanning/pekkohttpspi/RequestRunner.scala index 4b4606b..616954e 100644 --- a/src/main/scala/com/github/pjfanning/pekkohttpspi/RequestRunner.scala +++ b/src/main/scala/com/github/pjfanning/pekkohttpspi/RequestRunner.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/test/java/com/github/pjfanning/pekkohttpspi/s3/S3Test.java b/src/test/java/com/github/pjfanning/pekkohttpspi/s3/S3Test.java index a85efdb..518946b 100644 --- a/src/test/java/com/github/pjfanning/pekkohttpspi/s3/S3Test.java +++ b/src/test/java/com/github/pjfanning/pekkohttpspi/s3/S3Test.java @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/test/scala/com/github/pjfanning/pekkohttpspi/BaseAwsClientTest.scala b/src/test/scala/com/github/pjfanning/pekkohttpspi/BaseAwsClientTest.scala index 2485645..3139bf2 100644 --- a/src/test/scala/com/github/pjfanning/pekkohttpspi/BaseAwsClientTest.scala +++ b/src/test/scala/com/github/pjfanning/pekkohttpspi/BaseAwsClientTest.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/test/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpClientSpec.scala b/src/test/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpClientSpec.scala index 0ff1b8b..37893f8 100644 --- a/src/test/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpClientSpec.scala +++ b/src/test/scala/com/github/pjfanning/pekkohttpspi/PekkoHttpClientSpec.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/test/scala/com/github/pjfanning/pekkohttpspi/RequestRunnerSpec.scala b/src/test/scala/com/github/pjfanning/pekkohttpspi/RequestRunnerSpec.scala index 36aff91..f89907c 100644 --- a/src/test/scala/com/github/pjfanning/pekkohttpspi/RequestRunnerSpec.scala +++ b/src/test/scala/com/github/pjfanning/pekkohttpspi/RequestRunnerSpec.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/test/scala/com/github/pjfanning/pekkohttpspi/dynamodb/TestDynamoDB.scala b/src/test/scala/com/github/pjfanning/pekkohttpspi/dynamodb/TestDynamoDB.scala index a12917c..5c3e093 100644 --- a/src/test/scala/com/github/pjfanning/pekkohttpspi/dynamodb/TestDynamoDB.scala +++ b/src/test/scala/com/github/pjfanning/pekkohttpspi/dynamodb/TestDynamoDB.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/test/scala/com/github/pjfanning/pekkohttpspi/s3/TestS3.scala b/src/test/scala/com/github/pjfanning/pekkohttpspi/s3/TestS3.scala index 0ebb831..2d62946 100644 --- a/src/test/scala/com/github/pjfanning/pekkohttpspi/s3/TestS3.scala +++ b/src/test/scala/com/github/pjfanning/pekkohttpspi/s3/TestS3.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/test/scala/com/github/pjfanning/pekkohttpspi/sns/TestSNS.scala b/src/test/scala/com/github/pjfanning/pekkohttpspi/sns/TestSNS.scala index da3924f..8a6c7f8 100644 --- a/src/test/scala/com/github/pjfanning/pekkohttpspi/sns/TestSNS.scala +++ b/src/test/scala/com/github/pjfanning/pekkohttpspi/sns/TestSNS.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/test/scala/com/github/pjfanning/pekkohttpspi/sqs/TestSQS.scala b/src/test/scala/com/github/pjfanning/pekkohttpspi/sqs/TestSQS.scala index 53a26f9..5a812d7 100644 --- a/src/test/scala/com/github/pjfanning/pekkohttpspi/sqs/TestSQS.scala +++ b/src/test/scala/com/github/pjfanning/pekkohttpspi/sqs/TestSQS.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/test/scala/com/github/pjfanning/pekkohttpspi/testcontainers/LocalStackReadyLogWaitStrategy.scala b/src/test/scala/com/github/pjfanning/pekkohttpspi/testcontainers/LocalStackReadyLogWaitStrategy.scala index 658e519..b4faf00 100644 --- a/src/test/scala/com/github/pjfanning/pekkohttpspi/testcontainers/LocalStackReadyLogWaitStrategy.scala +++ b/src/test/scala/com/github/pjfanning/pekkohttpspi/testcontainers/LocalStackReadyLogWaitStrategy.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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, diff --git a/src/test/scala/com/github/pjfanning/pekkohttpspi/testcontainers/TimeoutWaitStrategy.scala b/src/test/scala/com/github/pjfanning/pekkohttpspi/testcontainers/TimeoutWaitStrategy.scala index cfdc472..26ab9fb 100644 --- a/src/test/scala/com/github/pjfanning/pekkohttpspi/testcontainers/TimeoutWaitStrategy.scala +++ b/src/test/scala/com/github/pjfanning/pekkohttpspi/testcontainers/TimeoutWaitStrategy.scala @@ -1,11 +1,12 @@ /* - * Copyright 2018 Matthias Lüneberg + * 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 * - * Licensed 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 + * 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,