diff --git a/.github/workflows/year.yml b/.github/workflows/year.yml index e69de29b..bfeb98c1 100644 --- a/.github/workflows/year.yml +++ b/.github/workflows/year.yml @@ -0,0 +1,48 @@ +# The MIT License (MIT) +# +# Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +--- +name: year +on: + schedule: + - cron: '0 1 22 * *' # Runs at 01:00 UTC on the 22nd of every month +concurrency: + group: year-${{ github.ref }} + cancel-in-progress: true +jobs: + license: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: FantasticFiasco/action-update-license-year@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + path: | #add new path with glob pattern https://www.npmjs.com/package/glob + **/LICENSE.txt + **/*.xml + **/*.xsl + **/*.java + **/*.yaml + **/*.yml + **/*.groovy + commitTitle: "update license year" diff --git a/src/test/java/io/github/eocqrs/kafka/act/AssignPartitionsTest.java b/src/test/java/io/github/eocqrs/kafka/act/AssignPartitionsTest.java index 94d54330..90dbed9b 100644 --- a/src/test/java/io/github/eocqrs/kafka/act/AssignPartitionsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/act/AssignPartitionsTest.java @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/io/github/eocqrs/kafka/act/CommitAsyncTest.java b/src/test/java/io/github/eocqrs/kafka/act/CommitAsyncTest.java index df1d3986..89757271 100644 --- a/src/test/java/io/github/eocqrs/kafka/act/CommitAsyncTest.java +++ b/src/test/java/io/github/eocqrs/kafka/act/CommitAsyncTest.java @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/io/github/eocqrs/kafka/act/CommitSyncTest.java b/src/test/java/io/github/eocqrs/kafka/act/CommitSyncTest.java index 33cbcb08..d2c590bf 100644 --- a/src/test/java/io/github/eocqrs/kafka/act/CommitSyncTest.java +++ b/src/test/java/io/github/eocqrs/kafka/act/CommitSyncTest.java @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/io/github/eocqrs/kafka/act/WakeupTest.java b/src/test/java/io/github/eocqrs/kafka/act/WakeupTest.java index 543fe249..5c0107ab 100644 --- a/src/test/java/io/github/eocqrs/kafka/act/WakeupTest.java +++ b/src/test/java/io/github/eocqrs/kafka/act/WakeupTest.java @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/io/github/eocqrs/kafka/consumer/KfConsumerTest.java b/src/test/java/io/github/eocqrs/kafka/consumer/KfConsumerTest.java index 3ba9bff8..477510b2 100644 --- a/src/test/java/io/github/eocqrs/kafka/consumer/KfConsumerTest.java +++ b/src/test/java/io/github/eocqrs/kafka/consumer/KfConsumerTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/consumer/settings/KfConsumerParamsTest.java b/src/test/java/io/github/eocqrs/kafka/consumer/settings/KfConsumerParamsTest.java index 086f4778..487afd3f 100644 --- a/src/test/java/io/github/eocqrs/kafka/consumer/settings/KfConsumerParamsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/consumer/settings/KfConsumerParamsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/data/KfDataTest.java b/src/test/java/io/github/eocqrs/kafka/data/KfDataTest.java index 454949ad..7c9fa381 100644 --- a/src/test/java/io/github/eocqrs/kafka/data/KfDataTest.java +++ b/src/test/java/io/github/eocqrs/kafka/data/KfDataTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/data/KfDataizedTest.java b/src/test/java/io/github/eocqrs/kafka/data/KfDataizedTest.java index ab74ac10..df83f121 100644 --- a/src/test/java/io/github/eocqrs/kafka/data/KfDataizedTest.java +++ b/src/test/java/io/github/eocqrs/kafka/data/KfDataizedTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/data/TimestampedTest.java b/src/test/java/io/github/eocqrs/kafka/data/TimestampedTest.java index 36493729..8d0eccd8 100644 --- a/src/test/java/io/github/eocqrs/kafka/data/TimestampedTest.java +++ b/src/test/java/io/github/eocqrs/kafka/data/TimestampedTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/data/TkvTest.java b/src/test/java/io/github/eocqrs/kafka/data/TkvTest.java index 3cd6df5a..5f89dff6 100644 --- a/src/test/java/io/github/eocqrs/kafka/data/TkvTest.java +++ b/src/test/java/io/github/eocqrs/kafka/data/TkvTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/data/WithPartitionTest.java b/src/test/java/io/github/eocqrs/kafka/data/WithPartitionTest.java index 2fa875d0..edac55fa 100644 --- a/src/test/java/io/github/eocqrs/kafka/data/WithPartitionTest.java +++ b/src/test/java/io/github/eocqrs/kafka/data/WithPartitionTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/fake/DatasetDirsTest.java b/src/test/java/io/github/eocqrs/kafka/fake/DatasetDirsTest.java index a9d37e1b..a742cf06 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/DatasetDirsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/DatasetDirsTest.java @@ -1,3 +1,27 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package io.github.eocqrs.kafka.fake; import io.github.eocqrs.kafka.data.KfData; diff --git a/src/test/java/io/github/eocqrs/kafka/fake/FkConsumerTest.java b/src/test/java/io/github/eocqrs/kafka/fake/FkConsumerTest.java index 2351d162..186a66df 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/FkConsumerTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/FkConsumerTest.java @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/io/github/eocqrs/kafka/fake/FkMetadataTaskTest.java b/src/test/java/io/github/eocqrs/kafka/fake/FkMetadataTaskTest.java index c81acb7b..0eb4c85c 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/FkMetadataTaskTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/FkMetadataTaskTest.java @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/io/github/eocqrs/kafka/fake/FkProducerTest.java b/src/test/java/io/github/eocqrs/kafka/fake/FkProducerTest.java index 2b34ac77..3a17d614 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/FkProducerTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/FkProducerTest.java @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/io/github/eocqrs/kafka/fake/FkRecordsTest.java b/src/test/java/io/github/eocqrs/kafka/fake/FkRecordsTest.java index e765543d..1e9dbfcf 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/FkRecordsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/FkRecordsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/fake/InXmlTest.java b/src/test/java/io/github/eocqrs/kafka/fake/InXmlTest.java index 680e8194..126add16 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/InXmlTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/InXmlTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/fake/SeenDirsTest.java b/src/test/java/io/github/eocqrs/kafka/fake/SeenDirsTest.java index 5027591d..8759c2bf 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/SeenDirsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/SeenDirsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/fake/SubscribeDirsTest.java b/src/test/java/io/github/eocqrs/kafka/fake/SubscribeDirsTest.java index f80aa1e6..04416ac4 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/SubscribeDirsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/SubscribeDirsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/fake/ThrowsOnFalseTest.java b/src/test/java/io/github/eocqrs/kafka/fake/ThrowsOnFalseTest.java index ec73071a..3a55268b 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/ThrowsOnFalseTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/ThrowsOnFalseTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/fake/TopicDirsTest.java b/src/test/java/io/github/eocqrs/kafka/fake/TopicDirsTest.java index e737daf8..79b11b69 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/TopicDirsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/TopicDirsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/fake/TopicExistsTest.java b/src/test/java/io/github/eocqrs/kafka/fake/TopicExistsTest.java index a6fc2598..07cdd9f1 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/TopicExistsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/TopicExistsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/fake/UnsubscribeDirsTest.java b/src/test/java/io/github/eocqrs/kafka/fake/UnsubscribeDirsTest.java index d78aab97..3056b9bd 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/UnsubscribeDirsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/UnsubscribeDirsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/fake/WithRebalanceListenerTest.java b/src/test/java/io/github/eocqrs/kafka/fake/WithRebalanceListenerTest.java index 4010c1eb..84b7325b 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/WithRebalanceListenerTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/WithRebalanceListenerTest.java @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/io/github/eocqrs/kafka/fake/storage/InFileTest.java b/src/test/java/io/github/eocqrs/kafka/fake/storage/InFileTest.java index 00dec711..b886fff8 100644 --- a/src/test/java/io/github/eocqrs/kafka/fake/storage/InFileTest.java +++ b/src/test/java/io/github/eocqrs/kafka/fake/storage/InFileTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/json/KfJsonFlexibleTest.java b/src/test/java/io/github/eocqrs/kafka/json/KfJsonFlexibleTest.java index b54d7064..8c6cef94 100644 --- a/src/test/java/io/github/eocqrs/kafka/json/KfJsonFlexibleTest.java +++ b/src/test/java/io/github/eocqrs/kafka/json/KfJsonFlexibleTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/AcksTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/AcksTest.java index cc7157e1..7df936a4 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/AcksTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/AcksTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/AutoOffsetResetTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/AutoOffsetResetTest.java index b112d557..dba019c8 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/AutoOffsetResetTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/AutoOffsetResetTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/BatchSizeTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/BatchSizeTest.java index b49bf2d7..93b74db1 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/BatchSizeTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/BatchSizeTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/BootstrapServersTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/BootstrapServersTest.java index 5a70e5a4..1670d8e3 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/BootstrapServersTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/BootstrapServersTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/BufferMemoryTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/BufferMemoryTest.java index 96f5fcb7..229a002f 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/BufferMemoryTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/BufferMemoryTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/ClientIdTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/ClientIdTest.java index 98bc8895..66fbf0d3 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/ClientIdTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/ClientIdTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/ClientRackTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/ClientRackTest.java index 862f0904..68563dc3 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/ClientRackTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/ClientRackTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/CompressionTypeTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/CompressionTypeTest.java index cda17cd3..d0634d57 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/CompressionTypeTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/CompressionTypeTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/DeliveryTimeoutMsTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/DeliveryTimeoutMsTest.java index 81ab3491..8ef06dce 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/DeliveryTimeoutMsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/DeliveryTimeoutMsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/EnableAutoCommitTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/EnableAutoCommitTest.java index f4779443..b34ed1ef 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/EnableAutoCommitTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/EnableAutoCommitTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/EnableIdempotenceTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/EnableIdempotenceTest.java index 5a78feeb..85e3e83d 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/EnableIdempotenceTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/EnableIdempotenceTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/FetchMaxBytesTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/FetchMaxBytesTest.java index 3ebbe48c..0071c4fb 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/FetchMaxBytesTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/FetchMaxBytesTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/FetchMaxWaitMsTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/FetchMaxWaitMsTest.java index 2d5b98d3..067a60e1 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/FetchMaxWaitMsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/FetchMaxWaitMsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/FetchMinBytesTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/FetchMinBytesTest.java index e6c3dfe7..55ba06f0 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/FetchMinBytesTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/FetchMinBytesTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/GroupIdTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/GroupIdTest.java index 55003cc5..860a3c63 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/GroupIdTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/GroupIdTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/GroupInstanceIdTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/GroupInstanceIdTest.java index ba6627cf..3f50b963 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/GroupInstanceIdTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/GroupInstanceIdTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/HeartbeatIntervalMsTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/HeartbeatIntervalMsTest.java index 3df2577e..f6330a4f 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/HeartbeatIntervalMsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/HeartbeatIntervalMsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/KeyDeserializerTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/KeyDeserializerTest.java index f916d195..5d22a109 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/KeyDeserializerTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/KeyDeserializerTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/KeySerializerTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/KeySerializerTest.java index 37dd21a0..7fbba0f7 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/KeySerializerTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/KeySerializerTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/KfFlexibleEnvelopeTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/KfFlexibleEnvelopeTest.java index 27ab7824..c668b6c6 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/KfFlexibleEnvelopeTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/KfFlexibleEnvelopeTest.java @@ -1,3 +1,27 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package io.github.eocqrs.kafka.parameters; import io.github.eocqrs.kafka.Params; diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/KfFlexibleTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/KfFlexibleTest.java index df31fcb3..acdb05cc 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/KfFlexibleTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/KfFlexibleTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/KfParamsTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/KfParamsTest.java index e50a2f04..893aef41 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/KfParamsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/KfParamsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/LingerMsTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/LingerMsTest.java index e2ea3191..2c9b65b2 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/LingerMsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/LingerMsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/MapParamsTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/MapParamsTest.java index 325db81a..d3d1d6c6 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/MapParamsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/MapParamsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/MaxBlockMsTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/MaxBlockMsTest.java index 414cfdc6..cc82f2e3 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/MaxBlockMsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/MaxBlockMsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/MaxInFlightRqTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/MaxInFlightRqTest.java index b6dee255..f5903583 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/MaxInFlightRqTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/MaxInFlightRqTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/MaxPartitionFetchBytesTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/MaxPartitionFetchBytesTest.java index f7470c1b..ad95311e 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/MaxPartitionFetchBytesTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/MaxPartitionFetchBytesTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/MaxPollIntervalMsTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/MaxPollIntervalMsTest.java index 61cb29de..7478895e 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/MaxPollIntervalMsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/MaxPollIntervalMsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/MaxPollRecordsTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/MaxPollRecordsTest.java index c12974fb..02883a82 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/MaxPollRecordsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/MaxPollRecordsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/MaxRqSizeTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/MaxRqSizeTest.java index f07ffb40..5e143622 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/MaxRqSizeTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/MaxRqSizeTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/PartitionAssignmentStrategyTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/PartitionAssignmentStrategyTest.java index fa926791..165c7c1f 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/PartitionAssignmentStrategyTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/PartitionAssignmentStrategyTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/ReceiveBufferBytesTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/ReceiveBufferBytesTest.java index d23aa5a5..69e9241e 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/ReceiveBufferBytesTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/ReceiveBufferBytesTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/RetriesTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/RetriesTest.java index 7791744a..1b2eb7f6 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/RetriesTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/RetriesTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/RetryBackoffMsTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/RetryBackoffMsTest.java index 5d04ae21..68010296 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/RetryBackoffMsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/RetryBackoffMsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/SaslJaasConfigTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/SaslJaasConfigTest.java index 5e46cf36..977dcaae 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/SaslJaasConfigTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/SaslJaasConfigTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/SaslMechanismTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/SaslMechanismTest.java index f6b796e4..c0427994 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/SaslMechanismTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/SaslMechanismTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/SecurityProtocolTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/SecurityProtocolTest.java index 32544957..b593070d 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/SecurityProtocolTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/SecurityProtocolTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/SendBufferBytesTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/SendBufferBytesTest.java index af9adddd..b904d7a8 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/SendBufferBytesTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/SendBufferBytesTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/SessionTimeoutMsTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/SessionTimeoutMsTest.java index 8b40386c..151cc476 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/SessionTimeoutMsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/SessionTimeoutMsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/ValueDeserializerTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/ValueDeserializerTest.java index afc53822..dedccbd1 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/ValueDeserializerTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/ValueDeserializerTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/parameters/ValueSerializerTest.java b/src/test/java/io/github/eocqrs/kafka/parameters/ValueSerializerTest.java index d8c16193..53658f07 100644 --- a/src/test/java/io/github/eocqrs/kafka/parameters/ValueSerializerTest.java +++ b/src/test/java/io/github/eocqrs/kafka/parameters/ValueSerializerTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/producer/KfCallbackTest.java b/src/test/java/io/github/eocqrs/kafka/producer/KfCallbackTest.java index 3d9b5d93..7095d6c0 100644 --- a/src/test/java/io/github/eocqrs/kafka/producer/KfCallbackTest.java +++ b/src/test/java/io/github/eocqrs/kafka/producer/KfCallbackTest.java @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/io/github/eocqrs/kafka/producer/KfProducerTest.java b/src/test/java/io/github/eocqrs/kafka/producer/KfProducerTest.java index af675020..1d87b217 100644 --- a/src/test/java/io/github/eocqrs/kafka/producer/KfProducerTest.java +++ b/src/test/java/io/github/eocqrs/kafka/producer/KfProducerTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/producer/settings/KfProducerParamsTest.java b/src/test/java/io/github/eocqrs/kafka/producer/settings/KfProducerParamsTest.java index b3bc4297..808661d8 100644 --- a/src/test/java/io/github/eocqrs/kafka/producer/settings/KfProducerParamsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/producer/settings/KfProducerParamsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/xml/ConsumerXmlMapParamsTest.java b/src/test/java/io/github/eocqrs/kafka/xml/ConsumerXmlMapParamsTest.java index 433d3ca9..b28960ce 100644 --- a/src/test/java/io/github/eocqrs/kafka/xml/ConsumerXmlMapParamsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/xml/ConsumerXmlMapParamsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/xml/KfXmlFlexibleTest.java b/src/test/java/io/github/eocqrs/kafka/xml/KfXmlFlexibleTest.java index 5478a009..3a5ab665 100644 --- a/src/test/java/io/github/eocqrs/kafka/xml/KfXmlFlexibleTest.java +++ b/src/test/java/io/github/eocqrs/kafka/xml/KfXmlFlexibleTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/xml/NameInCamelCaseTest.java b/src/test/java/io/github/eocqrs/kafka/xml/NameInCamelCaseTest.java index 8f6f5651..79fd9a42 100644 --- a/src/test/java/io/github/eocqrs/kafka/xml/NameInCamelCaseTest.java +++ b/src/test/java/io/github/eocqrs/kafka/xml/NameInCamelCaseTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/xml/ProducerXmlMapParamsTest.java b/src/test/java/io/github/eocqrs/kafka/xml/ProducerXmlMapParamsTest.java index 3b5d7a9e..299a08b0 100644 --- a/src/test/java/io/github/eocqrs/kafka/xml/ProducerXmlMapParamsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/xml/ProducerXmlMapParamsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/xml/TextXpathTest.java b/src/test/java/io/github/eocqrs/kafka/xml/TextXpathTest.java index 8c8c4a02..9299ee8c 100644 --- a/src/test/java/io/github/eocqrs/kafka/xml/TextXpathTest.java +++ b/src/test/java/io/github/eocqrs/kafka/xml/TextXpathTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/yaml/KfYamlConsumerSettingsTest.java b/src/test/java/io/github/eocqrs/kafka/yaml/KfYamlConsumerSettingsTest.java index 81b3a578..5c695ed2 100644 --- a/src/test/java/io/github/eocqrs/kafka/yaml/KfYamlConsumerSettingsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/yaml/KfYamlConsumerSettingsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/yaml/KfYamlProducerSettingsTest.java b/src/test/java/io/github/eocqrs/kafka/yaml/KfYamlProducerSettingsTest.java index f075c931..b26c7484 100644 --- a/src/test/java/io/github/eocqrs/kafka/yaml/KfYamlProducerSettingsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/yaml/KfYamlProducerSettingsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/io/github/eocqrs/kafka/yaml/YamlMapParamsTest.java b/src/test/java/io/github/eocqrs/kafka/yaml/YamlMapParamsTest.java index fe38f36e..e05cdca0 100644 --- a/src/test/java/io/github/eocqrs/kafka/yaml/YamlMapParamsTest.java +++ b/src/test/java/io/github/eocqrs/kafka/yaml/YamlMapParamsTest.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,