From 1f79d30df52c89aaa9f57b34ef36e23065c3e366 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Mon, 29 Mar 2021 21:04:28 +0900 Subject: [PATCH] Update copyright year --- README.md | 2 +- src/main/java/org/gaul/s3proxy/AccessControlPolicy.java | 2 +- src/main/java/org/gaul/s3proxy/AuthenticationType.java | 2 +- src/main/java/org/gaul/s3proxy/AwsHttpHeaders.java | 2 +- src/main/java/org/gaul/s3proxy/AwsSignature.java | 2 +- src/main/java/org/gaul/s3proxy/BlobStoreLocator.java | 2 +- src/main/java/org/gaul/s3proxy/ChunkedInputStream.java | 2 +- .../java/org/gaul/s3proxy/CompleteMultipartUploadRequest.java | 2 +- src/main/java/org/gaul/s3proxy/CreateBucketRequest.java | 2 +- src/main/java/org/gaul/s3proxy/CrossOriginResourceSharing.java | 2 +- .../java/org/gaul/s3proxy/DeleteMultipleObjectsRequest.java | 2 +- src/main/java/org/gaul/s3proxy/EventualBlobStore.java | 2 +- src/main/java/org/gaul/s3proxy/Main.java | 2 +- src/main/java/org/gaul/s3proxy/NullBlobStore.java | 2 +- src/main/java/org/gaul/s3proxy/Quirks.java | 2 +- src/main/java/org/gaul/s3proxy/ReadOnlyBlobStore.java | 2 +- src/main/java/org/gaul/s3proxy/S3AuthorizationHeader.java | 2 +- src/main/java/org/gaul/s3proxy/S3ErrorCode.java | 2 +- src/main/java/org/gaul/s3proxy/S3Exception.java | 2 +- src/main/java/org/gaul/s3proxy/S3Proxy.java | 2 +- src/main/java/org/gaul/s3proxy/S3ProxyConstants.java | 2 +- src/main/java/org/gaul/s3proxy/S3ProxyHandler.java | 2 +- src/main/java/org/gaul/s3proxy/S3ProxyHandlerJetty.java | 2 +- src/main/java/org/gaul/s3proxy/junit/S3ProxyRule.java | 2 +- src/main/resources/copyright_header.txt | 2 +- src/test/java/org/gaul/s3proxy/AwsSdkAnonymousTest.java | 2 +- src/test/java/org/gaul/s3proxy/AwsSdkTest.java | 2 +- .../s3proxy/CrossOriginResourceSharingAllowAllResponseTest.java | 2 +- .../gaul/s3proxy/CrossOriginResourceSharingResponseTest.java | 2 +- .../org/gaul/s3proxy/CrossOriginResourceSharingRuleTest.java | 2 +- src/test/java/org/gaul/s3proxy/EventualBlobStoreTest.java | 2 +- src/test/java/org/gaul/s3proxy/JcloudsBucketsLiveTest.java | 2 +- .../java/org/gaul/s3proxy/JcloudsS3BlobIntegrationLiveTest.java | 2 +- src/test/java/org/gaul/s3proxy/JcloudsS3BlobSignerLiveTest.java | 2 +- src/test/java/org/gaul/s3proxy/JcloudsS3ClientLiveTest.java | 2 +- .../org/gaul/s3proxy/JcloudsS3ContainerIntegrationLiveTest.java | 2 +- src/test/java/org/gaul/s3proxy/NullBlobStoreTest.java | 2 +- src/test/java/org/gaul/s3proxy/ReadOnlyBlobStoreTest.java | 2 +- src/test/java/org/gaul/s3proxy/TestUtils.java | 2 +- src/test/java/org/gaul/s3proxy/junit/S3ProxyRuleTest.java | 2 +- 40 files changed, 40 insertions(+), 40 deletions(-) diff --git a/README.md b/README.md index 40bf585..9b02549 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,6 @@ for specific storage backends. ## License -Copyright (C) 2014-2020 Andrew Gaul +Copyright (C) 2014-2021 Andrew Gaul Licensed under the Apache License, Version 2.0 diff --git a/src/main/java/org/gaul/s3proxy/AccessControlPolicy.java b/src/main/java/org/gaul/s3proxy/AccessControlPolicy.java index 01179f3..698e42d 100644 --- a/src/main/java/org/gaul/s3proxy/AccessControlPolicy.java +++ b/src/main/java/org/gaul/s3proxy/AccessControlPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/AuthenticationType.java b/src/main/java/org/gaul/s3proxy/AuthenticationType.java index ee80b62..72a33ea 100644 --- a/src/main/java/org/gaul/s3proxy/AuthenticationType.java +++ b/src/main/java/org/gaul/s3proxy/AuthenticationType.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/AwsHttpHeaders.java b/src/main/java/org/gaul/s3proxy/AwsHttpHeaders.java index bb5920b..2efef2a 100644 --- a/src/main/java/org/gaul/s3proxy/AwsHttpHeaders.java +++ b/src/main/java/org/gaul/s3proxy/AwsHttpHeaders.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/AwsSignature.java b/src/main/java/org/gaul/s3proxy/AwsSignature.java index fffe52e..34afd3c 100644 --- a/src/main/java/org/gaul/s3proxy/AwsSignature.java +++ b/src/main/java/org/gaul/s3proxy/AwsSignature.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/BlobStoreLocator.java b/src/main/java/org/gaul/s3proxy/BlobStoreLocator.java index 2e245ff..cb63735 100644 --- a/src/main/java/org/gaul/s3proxy/BlobStoreLocator.java +++ b/src/main/java/org/gaul/s3proxy/BlobStoreLocator.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/ChunkedInputStream.java b/src/main/java/org/gaul/s3proxy/ChunkedInputStream.java index c949a3f..b712e6e 100644 --- a/src/main/java/org/gaul/s3proxy/ChunkedInputStream.java +++ b/src/main/java/org/gaul/s3proxy/ChunkedInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/CompleteMultipartUploadRequest.java b/src/main/java/org/gaul/s3proxy/CompleteMultipartUploadRequest.java index 01b9102..7286b55 100644 --- a/src/main/java/org/gaul/s3proxy/CompleteMultipartUploadRequest.java +++ b/src/main/java/org/gaul/s3proxy/CompleteMultipartUploadRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/CreateBucketRequest.java b/src/main/java/org/gaul/s3proxy/CreateBucketRequest.java index 74b728e..00fe532 100644 --- a/src/main/java/org/gaul/s3proxy/CreateBucketRequest.java +++ b/src/main/java/org/gaul/s3proxy/CreateBucketRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/CrossOriginResourceSharing.java b/src/main/java/org/gaul/s3proxy/CrossOriginResourceSharing.java index fbd615d..7bbb0d5 100644 --- a/src/main/java/org/gaul/s3proxy/CrossOriginResourceSharing.java +++ b/src/main/java/org/gaul/s3proxy/CrossOriginResourceSharing.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/DeleteMultipleObjectsRequest.java b/src/main/java/org/gaul/s3proxy/DeleteMultipleObjectsRequest.java index 15332fb..7b5bb6b 100644 --- a/src/main/java/org/gaul/s3proxy/DeleteMultipleObjectsRequest.java +++ b/src/main/java/org/gaul/s3proxy/DeleteMultipleObjectsRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/EventualBlobStore.java b/src/main/java/org/gaul/s3proxy/EventualBlobStore.java index 97eceb5..cc0ced1 100644 --- a/src/main/java/org/gaul/s3proxy/EventualBlobStore.java +++ b/src/main/java/org/gaul/s3proxy/EventualBlobStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/Main.java b/src/main/java/org/gaul/s3proxy/Main.java index bd8d793..019487d 100644 --- a/src/main/java/org/gaul/s3proxy/Main.java +++ b/src/main/java/org/gaul/s3proxy/Main.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/NullBlobStore.java b/src/main/java/org/gaul/s3proxy/NullBlobStore.java index fe58dc9..860bada 100644 --- a/src/main/java/org/gaul/s3proxy/NullBlobStore.java +++ b/src/main/java/org/gaul/s3proxy/NullBlobStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/Quirks.java b/src/main/java/org/gaul/s3proxy/Quirks.java index 24fc79e..867abc7 100644 --- a/src/main/java/org/gaul/s3proxy/Quirks.java +++ b/src/main/java/org/gaul/s3proxy/Quirks.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/ReadOnlyBlobStore.java b/src/main/java/org/gaul/s3proxy/ReadOnlyBlobStore.java index 8ccbc51..f9972b0 100644 --- a/src/main/java/org/gaul/s3proxy/ReadOnlyBlobStore.java +++ b/src/main/java/org/gaul/s3proxy/ReadOnlyBlobStore.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/S3AuthorizationHeader.java b/src/main/java/org/gaul/s3proxy/S3AuthorizationHeader.java index 117d705..c863de5 100644 --- a/src/main/java/org/gaul/s3proxy/S3AuthorizationHeader.java +++ b/src/main/java/org/gaul/s3proxy/S3AuthorizationHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/S3ErrorCode.java b/src/main/java/org/gaul/s3proxy/S3ErrorCode.java index 7418347..d4158b2 100644 --- a/src/main/java/org/gaul/s3proxy/S3ErrorCode.java +++ b/src/main/java/org/gaul/s3proxy/S3ErrorCode.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/S3Exception.java b/src/main/java/org/gaul/s3proxy/S3Exception.java index dfaa55a..620f904 100644 --- a/src/main/java/org/gaul/s3proxy/S3Exception.java +++ b/src/main/java/org/gaul/s3proxy/S3Exception.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/S3Proxy.java b/src/main/java/org/gaul/s3proxy/S3Proxy.java index d0d0a85..3fa9d3e 100644 --- a/src/main/java/org/gaul/s3proxy/S3Proxy.java +++ b/src/main/java/org/gaul/s3proxy/S3Proxy.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/S3ProxyConstants.java b/src/main/java/org/gaul/s3proxy/S3ProxyConstants.java index 4635f39..a07f1c2 100644 --- a/src/main/java/org/gaul/s3proxy/S3ProxyConstants.java +++ b/src/main/java/org/gaul/s3proxy/S3ProxyConstants.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/S3ProxyHandler.java b/src/main/java/org/gaul/s3proxy/S3ProxyHandler.java index 5856245..eb49291 100644 --- a/src/main/java/org/gaul/s3proxy/S3ProxyHandler.java +++ b/src/main/java/org/gaul/s3proxy/S3ProxyHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/S3ProxyHandlerJetty.java b/src/main/java/org/gaul/s3proxy/S3ProxyHandlerJetty.java index f645d25..c2fb331 100644 --- a/src/main/java/org/gaul/s3proxy/S3ProxyHandlerJetty.java +++ b/src/main/java/org/gaul/s3proxy/S3ProxyHandlerJetty.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/java/org/gaul/s3proxy/junit/S3ProxyRule.java b/src/main/java/org/gaul/s3proxy/junit/S3ProxyRule.java index d383cd2..506ceb0 100644 --- a/src/main/java/org/gaul/s3proxy/junit/S3ProxyRule.java +++ b/src/main/java/org/gaul/s3proxy/junit/S3ProxyRule.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/main/resources/copyright_header.txt b/src/main/resources/copyright_header.txt index 108fa56..98284a5 100644 --- a/src/main/resources/copyright_header.txt +++ b/src/main/resources/copyright_header.txt @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/AwsSdkAnonymousTest.java b/src/test/java/org/gaul/s3proxy/AwsSdkAnonymousTest.java index d744de2..4b10ec1 100644 --- a/src/test/java/org/gaul/s3proxy/AwsSdkAnonymousTest.java +++ b/src/test/java/org/gaul/s3proxy/AwsSdkAnonymousTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/AwsSdkTest.java b/src/test/java/org/gaul/s3proxy/AwsSdkTest.java index 63ecd70..b2253f6 100644 --- a/src/test/java/org/gaul/s3proxy/AwsSdkTest.java +++ b/src/test/java/org/gaul/s3proxy/AwsSdkTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingAllowAllResponseTest.java b/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingAllowAllResponseTest.java index ef90573..92593f1 100644 --- a/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingAllowAllResponseTest.java +++ b/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingAllowAllResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingResponseTest.java b/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingResponseTest.java index 9eeca03..1c33f33 100644 --- a/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingResponseTest.java +++ b/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingRuleTest.java b/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingRuleTest.java index 706e906..0fb0ca4 100644 --- a/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingRuleTest.java +++ b/src/test/java/org/gaul/s3proxy/CrossOriginResourceSharingRuleTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/EventualBlobStoreTest.java b/src/test/java/org/gaul/s3proxy/EventualBlobStoreTest.java index 4f8ccad..995f909 100644 --- a/src/test/java/org/gaul/s3proxy/EventualBlobStoreTest.java +++ b/src/test/java/org/gaul/s3proxy/EventualBlobStoreTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/JcloudsBucketsLiveTest.java b/src/test/java/org/gaul/s3proxy/JcloudsBucketsLiveTest.java index 88a7203..fa22c0a 100644 --- a/src/test/java/org/gaul/s3proxy/JcloudsBucketsLiveTest.java +++ b/src/test/java/org/gaul/s3proxy/JcloudsBucketsLiveTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/JcloudsS3BlobIntegrationLiveTest.java b/src/test/java/org/gaul/s3proxy/JcloudsS3BlobIntegrationLiveTest.java index 58e3b56..d349cb5 100644 --- a/src/test/java/org/gaul/s3proxy/JcloudsS3BlobIntegrationLiveTest.java +++ b/src/test/java/org/gaul/s3proxy/JcloudsS3BlobIntegrationLiveTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/JcloudsS3BlobSignerLiveTest.java b/src/test/java/org/gaul/s3proxy/JcloudsS3BlobSignerLiveTest.java index 37a9988..23e49e5 100644 --- a/src/test/java/org/gaul/s3proxy/JcloudsS3BlobSignerLiveTest.java +++ b/src/test/java/org/gaul/s3proxy/JcloudsS3BlobSignerLiveTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/JcloudsS3ClientLiveTest.java b/src/test/java/org/gaul/s3proxy/JcloudsS3ClientLiveTest.java index 73bdd5d..3602f1c 100644 --- a/src/test/java/org/gaul/s3proxy/JcloudsS3ClientLiveTest.java +++ b/src/test/java/org/gaul/s3proxy/JcloudsS3ClientLiveTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/JcloudsS3ContainerIntegrationLiveTest.java b/src/test/java/org/gaul/s3proxy/JcloudsS3ContainerIntegrationLiveTest.java index 678675d..6d060b2 100644 --- a/src/test/java/org/gaul/s3proxy/JcloudsS3ContainerIntegrationLiveTest.java +++ b/src/test/java/org/gaul/s3proxy/JcloudsS3ContainerIntegrationLiveTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/NullBlobStoreTest.java b/src/test/java/org/gaul/s3proxy/NullBlobStoreTest.java index 192e706..d8e223a 100644 --- a/src/test/java/org/gaul/s3proxy/NullBlobStoreTest.java +++ b/src/test/java/org/gaul/s3proxy/NullBlobStoreTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/ReadOnlyBlobStoreTest.java b/src/test/java/org/gaul/s3proxy/ReadOnlyBlobStoreTest.java index 4ec682a..a83645b 100644 --- a/src/test/java/org/gaul/s3proxy/ReadOnlyBlobStoreTest.java +++ b/src/test/java/org/gaul/s3proxy/ReadOnlyBlobStoreTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/TestUtils.java b/src/test/java/org/gaul/s3proxy/TestUtils.java index 4730c8f..e494536 100644 --- a/src/test/java/org/gaul/s3proxy/TestUtils.java +++ b/src/test/java/org/gaul/s3proxy/TestUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * 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/src/test/java/org/gaul/s3proxy/junit/S3ProxyRuleTest.java b/src/test/java/org/gaul/s3proxy/junit/S3ProxyRuleTest.java index 9a1e4c6..664738e 100644 --- a/src/test/java/org/gaul/s3proxy/junit/S3ProxyRuleTest.java +++ b/src/test/java/org/gaul/s3proxy/junit/S3ProxyRuleTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2020 Andrew Gaul + * Copyright 2014-2021 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.