diff --git a/kafka-connect-aws-s3/src/fun/scala/io/lenses/streamreactor/connect/ProvidedJars.scala b/kafka-connect-aws-s3/src/fun/scala/io/lenses/streamreactor/connect/ProvidedJars.scala index 9b4ac909f..032c0da43 100644 --- a/kafka-connect-aws-s3/src/fun/scala/io/lenses/streamreactor/connect/ProvidedJars.scala +++ b/kafka-connect-aws-s3/src/fun/scala/io/lenses/streamreactor/connect/ProvidedJars.scala @@ -1,7 +1,6 @@ package io.lenses.streamreactor.connect import com.github.luben.zstd.NoPool -import com.hadoop.compression.lzo.LzopCodec import com.typesafe.scalalogging.LazyLogging import org.apache.hadoop.io.compress.CompressionCodec import org.tukaani.xz.FilterOptions @@ -13,7 +12,6 @@ object ProvidedJars extends LazyLogging { private val classesWithinJarsToProvide = Seq( classOf[FilterOptions], - classOf[LzopCodec], classOf[NoPool], classOf[CompressionCodec], ) diff --git a/kafka-connect-aws-s3/src/fun/scala/io/lenses/streamreactor/connect/S3CompressionTest.scala b/kafka-connect-aws-s3/src/fun/scala/io/lenses/streamreactor/connect/S3CompressionTest.scala index e8e33d57d..7fc3429db 100644 --- a/kafka-connect-aws-s3/src/fun/scala/io/lenses/streamreactor/connect/S3CompressionTest.scala +++ b/kafka-connect-aws-s3/src/fun/scala/io/lenses/streamreactor/connect/S3CompressionTest.scala @@ -63,7 +63,7 @@ class S3CompressionTest ("parquet", "uncompressed", false), ("parquet", "snappy", false), ("parquet", "gzip", false), - ("parquet", "lz4", false), + //("parquet", "lz4", false), ("parquet", "zstd", false), ) diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/DocumentClientProvider.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/DocumentClientProvider.scala index 4d567c40a..a431f015a 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/DocumentClientProvider.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/DocumentClientProvider.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/Json.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/Json.scala index 1e495265c..6a9a0f53e 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/Json.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/Json.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbConfig.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbConfig.scala index 92cb38a06..3cfd95549 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbConfig.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbConfigConstants.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbConfigConstants.scala index 1ec50731e..dce783255 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbConfigConstants.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbConfigConstants.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbSinkSettings.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbSinkSettings.scala index 8aeccb210..7b158f045 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbSinkSettings.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbSinkSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/converters/SinkRecordConverter.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/converters/SinkRecordConverter.scala index 4fa0e7a56..c06ca3807 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/converters/SinkRecordConverter.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/converters/SinkRecordConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/CreateDatabaseFn.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/CreateDatabaseFn.scala index ae6a85f14..05859b064 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/CreateDatabaseFn.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/CreateDatabaseFn.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkConnector.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkConnector.scala index 14b023cc1..07f6a8ddb 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkConnector.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTask.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTask.scala index ce695f45f..a567f637b 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTask.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbWriter.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbWriter.scala index 17356efe9..63bc3d88d 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbWriter.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/KeysExtractor.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/KeysExtractor.scala index 402f4492d..263eb0709 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/KeysExtractor.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/KeysExtractor.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/SinkRecordToDocument.scala b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/SinkRecordToDocument.scala index c012fdb9f..e2c4068e7 100644 --- a/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/SinkRecordToDocument.scala +++ b/kafka-connect-azure-documentdb/src/main/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/SinkRecordToDocument.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbSinkSettingsTest.scala b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbSinkSettingsTest.scala index b676e706c..ffcd63e36 100644 --- a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbSinkSettingsTest.scala +++ b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/config/DocumentDbSinkSettingsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkConnectorTest.scala b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkConnectorTest.scala index 83c468968..1224b827a 100644 --- a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkConnectorTest.scala +++ b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkConnectorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskJsonTest.scala b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskJsonTest.scala index cdc12b774..01a3ae317 100644 --- a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskJsonTest.scala +++ b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskJsonTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskMapTest.scala b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskMapTest.scala index 9bf1dfc4a..04f48c2ca 100644 --- a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskMapTest.scala +++ b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskMapTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskStructTest.scala b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskStructTest.scala index 93569b11e..bbdc0f77e 100644 --- a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskStructTest.scala +++ b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/DocumentDbSinkTaskStructTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Input.scala b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Input.scala index 9b3738f29..3f9539ab1 100644 --- a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Input.scala +++ b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Input.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/KeysExtractorTest.scala b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/KeysExtractorTest.scala index c69c7b1ec..8649775e6 100644 --- a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/KeysExtractorTest.scala +++ b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/KeysExtractorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/MatchingArgument.scala b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/MatchingArgument.scala index cf9267a45..e8929b927 100644 --- a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/MatchingArgument.scala +++ b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/MatchingArgument.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Output.scala b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Output.scala index 88c084e29..d5bb12d00 100644 --- a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Output.scala +++ b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Output.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/SinkRecordToDocumentTest.scala b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/SinkRecordToDocumentTest.scala index 592b356b9..7e013862c 100644 --- a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/SinkRecordToDocumentTest.scala +++ b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/SinkRecordToDocumentTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Transaction.scala b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Transaction.scala index 2558fd887..988e17dd5 100644 --- a/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Transaction.scala +++ b/kafka-connect-azure-documentdb/src/test/scala/io/lenses/streamreactor/connect/azure/documentdb/sink/Transaction.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/CassandraConnection.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/CassandraConnection.scala index 7768fff59..8bffaf6da 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/CassandraConnection.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/CassandraConnection.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraConfig.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraConfig.scala index c9974f87a..1aeb9c6e5 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraConfig.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraConfigConstants.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraConfigConstants.scala index 6d9cfe7b6..fd659291e 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraConfigConstants.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraConfigConstants.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraSettings.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraSettings.scala index df6f97b4d..cd543c419 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraSettings.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/config/CassandraSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraJsonWriter.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraJsonWriter.scala index df1bd7ea6..b6170173b 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraJsonWriter.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraJsonWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraSinkConnector.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraSinkConnector.scala index 0a19cbcbf..443d1d6e7 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraSinkConnector.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraSinkConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraSinkTask.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraSinkTask.scala index fe83acf0a..48b785169 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraSinkTask.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraSinkTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraWriter.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraWriter.scala index 56c968533..c29b00971 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraWriter.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/sink/CassandraWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraSourceConnector.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraSourceConnector.scala index 50dfdde84..bfc0e4182 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraSourceConnector.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraSourceConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraSourceTask.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraSourceTask.scala index d4677d0ff..25db26e3f 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraSourceTask.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraSourceTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraTableReader.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraTableReader.scala index e4ce5776e..131f1b641 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraTableReader.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraTableReader.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraTypeConverter.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraTypeConverter.scala index f3d89d0d5..fd4173abd 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraTypeConverter.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CassandraTypeConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CqlGenerator.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CqlGenerator.scala index afc41c2f9..e2761fab0 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CqlGenerator.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/source/CqlGenerator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraResultSetWrapper.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraResultSetWrapper.scala index 3bff38af8..0cf8aaa9c 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraResultSetWrapper.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraResultSetWrapper.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraUtils.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraUtils.scala index 95544a2a1..2eabf4f73 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraUtils.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraUtils.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/KeyUtils.scala b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/KeyUtils.scala index fc6562e4b..a00c6f1c3 100644 --- a/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/KeyUtils.scala +++ b/kafka-connect-cassandra/src/main/scala/io/lenses/streamreactor/connect/cassandra/utils/KeyUtils.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/TestConfig.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/TestConfig.scala index d6055db5c..a0eb4683d 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/TestConfig.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/TestConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraConstants.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraConstants.scala index afc7ee197..62502ae57 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraConstants.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraConstants.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSinkConfig.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSinkConfig.scala index e26ffbf3c..623eb9af7 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSinkConfig.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSinkConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSinkSettings.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSinkSettings.scala index 1a175b2ea..1517fa1fc 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSinkSettings.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSinkSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSourceSettings.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSourceSettings.scala index 347c99dfc..3670068b0 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSourceSettings.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/config/TestCassandraSourceSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Input.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Input.scala index 62d0c1a8a..812f455e1 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Input.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Input.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Json.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Json.scala index 6c250fce4..b3507d4ef 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Json.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Json.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Output.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Output.scala index b94f66f03..0733e1396 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Output.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Output.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/SinkRecordToJsonTest.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/SinkRecordToJsonTest.scala index b5ee1d0fe..2952d1ea1 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/SinkRecordToJsonTest.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/SinkRecordToJsonTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/TestCassandraJsonWriterUnset.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/TestCassandraJsonWriterUnset.scala index c0231e0d1..5067f06ed 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/TestCassandraJsonWriterUnset.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/TestCassandraJsonWriterUnset.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/TestCassandraSinkConnector.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/TestCassandraSinkConnector.scala index b410a71c6..dbbd85251 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/TestCassandraSinkConnector.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/TestCassandraSinkConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Transaction.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Transaction.scala index cf8e072a3..22fc7a5a1 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Transaction.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/sink/Transaction.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCassandraSourceTaskTokenCql.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCassandraSourceTaskTokenCql.scala index 72c77fbfe..a62b55c9b 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCassandraSourceTaskTokenCql.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCassandraSourceTaskTokenCql.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCassandraTypeConverter.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCassandraTypeConverter.scala index 90e45bd2d..4be50799b 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCassandraTypeConverter.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCassandraTypeConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCqlGenerator.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCqlGenerator.scala index 418b7df7b..5da052214 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCqlGenerator.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/source/TestCqlGenerator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraUtilsTest.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraUtilsTest.scala index c09286db9..b99d4d7f5 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraUtilsTest.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/CassandraUtilsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/KeyUtilsTest.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/KeyUtilsTest.scala index f10a174e3..b972eedc6 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/KeyUtilsTest.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/KeyUtilsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/TestUtils.scala b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/TestUtils.scala index ed76510e8..b51b71403 100644 --- a/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/TestUtils.scala +++ b/kafka-connect-cassandra/src/test/scala/io/lenses/streamreactor/connect/cassandra/utils/TestUtils.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/GeneratorTest.scala b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/GeneratorTest.scala index 87e4b5755..da5bf31f0 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/GeneratorTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/GeneratorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/Person.scala b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/Person.scala index 645facaed..6c389db14 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/Person.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/Person.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/Pizza.scala b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/Pizza.scala index 58b13186c..4f102b970 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/Pizza.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/Pizza.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/StructSqlTest.scala b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/StructSqlTest.scala index bb42aa890..65d79f652 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/StructSqlTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/StructSqlTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/StructSqlWithRetainStructureTest.scala b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/StructSqlWithRetainStructureTest.scala index 6b14e7adb..aa843b61f 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/StructSqlWithRetainStructureTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/StructSqlWithRetainStructureTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/TransformTests.scala b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/TransformTests.scala index fb21c2079..8e40050cf 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/TransformTests.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/TransformTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/TransformationTests.scala b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/TransformationTests.scala index 4068e733d..44b135dc8 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/connect/sql/TransformationTests.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/connect/sql/TransformationTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/json/sql/JsonSqlTest.scala b/kafka-connect-common/src/test/scala/io/lenses/json/sql/JsonSqlTest.scala index 973bde8f6..d91e086b9 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/json/sql/JsonSqlTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/json/sql/JsonSqlTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/json/sql/JsonSqlWithRetainStructureTest.scala b/kafka-connect-common/src/test/scala/io/lenses/json/sql/JsonSqlWithRetainStructureTest.scala index e964bf23f..d82c5f70b 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/json/sql/JsonSqlWithRetainStructureTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/json/sql/JsonSqlWithRetainStructureTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/json/sql/Person.scala b/kafka-connect-common/src/test/scala/io/lenses/json/sql/Person.scala index 160d96d85..013210b2e 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/json/sql/Person.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/json/sql/Person.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/json/sql/Pizza.scala b/kafka-connect-common/src/test/scala/io/lenses/json/sql/Pizza.scala index dd6d75348..4f60bf724 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/json/sql/Pizza.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/json/sql/Pizza.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/TestUtilsBase.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/TestUtilsBase.scala index 060f08d2b..42354d80d 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/TestUtilsBase.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/TestUtilsBase.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/concurrent/FutureAwaitWithFailFastFnTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/concurrent/FutureAwaitWithFailFastFnTest.scala index 2614cfaa3..4f71ce73f 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/concurrent/FutureAwaitWithFailFastFnTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/concurrent/FutureAwaitWithFailFastFnTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/KcqlSettingsTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/KcqlSettingsTest.scala index a669bbb4d..cf12cb8bf 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/KcqlSettingsTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/KcqlSettingsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/TestHelpers.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/TestHelpers.scala index 351ecf77f..4ed4ce4be 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/TestHelpers.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/TestHelpers.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/TestSSLConfigContext.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/TestSSLConfigContext.scala index 488bef623..0b3baea4f 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/TestSSLConfigContext.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/config/TestSSLConfigContext.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/converters/sink/AvroConverterTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/converters/sink/AvroConverterTest.scala index ed1057bdb..343966786 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/converters/sink/AvroConverterTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/converters/sink/AvroConverterTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/converters/sink/BytesConverterTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/converters/sink/BytesConverterTest.scala index b21ff9567..1b32b5943 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/converters/sink/BytesConverterTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/converters/sink/BytesConverterTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerNoop.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerNoop.scala index 5d958bb95..01e7e9962 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerNoop.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerNoop.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerRetry.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerRetry.scala index 85917799c..199a2492f 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerRetry.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerRetry.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerThrow.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerThrow.scala index aaed425fe..6cc1b8485 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerThrow.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/errors/TestErrorHandlerThrow.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/offsets/TestOffsetHandler.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/offsets/TestOffsetHandler.scala index 664524bb2..4f9bdf7bf 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/offsets/TestOffsetHandler.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/offsets/TestOffsetHandler.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/schemas/TestConverterUtil.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/schemas/TestConverterUtil.scala index b6b70ab91..dfa0f58a9 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/schemas/TestConverterUtil.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/schemas/TestConverterUtil.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/serialization/AvroSerializerTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/serialization/AvroSerializerTest.scala index 5fcad32c1..3bb2f35e9 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/serialization/AvroSerializerTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/serialization/AvroSerializerTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringGenericRowKeyBuilderTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringGenericRowKeyBuilderTest.scala index 89c2ef9e7..76b1025cc 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringGenericRowKeyBuilderTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringGenericRowKeyBuilderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringSinkRecordKeyBuilderTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringSinkRecordKeyBuilderTest.scala index 5192c6070..6ae169def 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringSinkRecordKeyBuilderTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringSinkRecordKeyBuilderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringStructFieldsStringKeyBuilderTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringStructFieldsStringKeyBuilderTest.scala index b4b594757..b2cdeaad5 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringStructFieldsStringKeyBuilderTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/common/sink/StringStructFieldsStringKeyBuilderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/config/kcqlprops/KcqlPropertiesTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/config/kcqlprops/KcqlPropertiesTest.scala index f589734b7..e4dc0e0db 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/config/kcqlprops/KcqlPropertiesTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/config/kcqlprops/KcqlPropertiesTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/AvroConverterTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/AvroConverterTest.scala index e3b0bb05d..29bd1e51c 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/AvroConverterTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/AvroConverterTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/BytesConverterTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/BytesConverterTest.scala index d45ffb839..ee2fb2ee8 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/BytesConverterTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/BytesConverterTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JacksonJson.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JacksonJson.scala index 7e1975ff0..ad44edff2 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JacksonJson.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JacksonJson.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonConverterWithSchemaEvolutionTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonConverterWithSchemaEvolutionTest.scala index 3486c0a85..c7481c0a6 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonConverterWithSchemaEvolutionTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonConverterWithSchemaEvolutionTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonPassThroughConverterTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonPassThroughConverterTest.scala index 485d532a4..6ae0cea07 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonPassThroughConverterTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonPassThroughConverterTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonSimpleConverterTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonSimpleConverterTest.scala index 24a65696a..1684744d8 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonSimpleConverterTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/converters/source/JsonSimpleConverterTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/LineStartLineEndReaderTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/LineStartLineEndReaderTest.scala index b9f720c47..3d5893602 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/LineStartLineEndReaderTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/LineStartLineEndReaderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/OptionIteratorAdaptorTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/OptionIteratorAdaptorTest.scala index 8beac1723..f2a458bfd 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/OptionIteratorAdaptorTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/OptionIteratorAdaptorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/PrefixSuffixReaderTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/PrefixSuffixReaderTest.scala index 2c9765d78..fb8abf754 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/PrefixSuffixReaderTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/PrefixSuffixReaderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/RegexMatchLineReaderTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/RegexMatchLineReaderTest.scala index 706cfab51..16263f894 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/RegexMatchLineReaderTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/RegexMatchLineReaderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/SequenceBasedLineReaderTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/SequenceBasedLineReaderTest.scala index 2ecb3f2ae..dbbbcd924 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/SequenceBasedLineReaderTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/SequenceBasedLineReaderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/TextUtilsTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/TextUtilsTest.scala index 341a5e5cb..39dbb715d 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/TextUtilsTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/io/text/TextUtilsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/json/SimpleJsonConverterTest.scala b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/json/SimpleJsonConverterTest.scala index a219497d1..fb732398c 100644 --- a/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/json/SimpleJsonConverterTest.scala +++ b/kafka-connect-common/src/test/scala/io/lenses/streamreactor/connect/json/SimpleJsonConverterTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticJsonWriter.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticJsonWriter.scala index f458a09af..8f7f390a8 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticJsonWriter.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticJsonWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkConnector.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkConnector.scala index a5fe9c6c1..71d3a8b08 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkConnector.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkTask.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkTask.scala index 675879f30..74e0d1b84 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkTask.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticWriter.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticWriter.scala index 0dd69aa50..4f4ab7559 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticWriter.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/ElasticWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/KElasticClient.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/KElasticClient.scala index 4643f9cb0..881b46ebb 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/KElasticClient.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/KElasticClient.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/PrimaryKeyExtractor.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/PrimaryKeyExtractor.scala index 8a4ee9ab6..34e45a4ff 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/PrimaryKeyExtractor.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/PrimaryKeyExtractor.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/Transform.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/Transform.scala index 7e07b67cb..acf31c206 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/Transform.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/Transform.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/TransformAndExtractPK.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/TransformAndExtractPK.scala index 3fa7f712e..b131dc695 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/TransformAndExtractPK.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/TransformAndExtractPK.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticConfig.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticConfig.scala index 3aac0ec94..878b54a9e 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticConfig.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticConfigConstants.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticConfigConstants.scala index f8d31262a..915b1c225 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticConfigConstants.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticConfigConstants.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticSettings.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticSettings.scala index c6d2fb372..9d3b86713 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticSettings.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/config/ElasticSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/CreateIndex.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/CreateIndex.scala index 8b4305842..34729a36e 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/CreateIndex.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/CreateIndex.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/CustomIndexName.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/CustomIndexName.scala index b3cc5c295..4f82ea90e 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/CustomIndexName.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/CustomIndexName.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/IndexNameFragment.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/IndexNameFragment.scala index 47b47315d..1114c88e6 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/IndexNameFragment.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/IndexNameFragment.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/package.scala b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/package.scala index 3211f7b84..7d848dcc1 100644 --- a/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/package.scala +++ b/kafka-connect-elastic6/src/main/scala/io/lenses/streamreactor/connect/elastic6/indexname/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/CreateIndexTest.scala b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/CreateIndexTest.scala index b359b6afd..870ea1689 100644 --- a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/CreateIndexTest.scala +++ b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/CreateIndexTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticConfigTest.scala b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticConfigTest.scala index edcf6bedf..50e6c5ef9 100644 --- a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticConfigTest.scala +++ b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticConfigTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkConnectorTest.scala b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkConnectorTest.scala index 8fae390c7..93611d666 100644 --- a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkConnectorTest.scala +++ b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkConnectorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkTaskTest.scala b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkTaskTest.scala index 77eb60c44..049df8c58 100644 --- a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkTaskTest.scala +++ b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticSinkTaskTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticWriterCredentialsTest.scala b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticWriterCredentialsTest.scala index 177c59599..7768f9a16 100644 --- a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticWriterCredentialsTest.scala +++ b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/ElasticWriterCredentialsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/TestBase.scala b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/TestBase.scala index d9e25db57..5a917f004 100644 --- a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/TestBase.scala +++ b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/TestBase.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/ClockFixture.scala b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/ClockFixture.scala index 2e389747b..76e9c9bcd 100644 --- a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/ClockFixture.scala +++ b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/ClockFixture.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/CustomIndexNameTest.scala b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/CustomIndexNameTest.scala index 5c43a9da5..5b829c6fe 100644 --- a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/CustomIndexNameTest.scala +++ b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/CustomIndexNameTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/IndexNameFragmentTest.scala b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/IndexNameFragmentTest.scala index b062c00ce..60d24f27d 100644 --- a/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/IndexNameFragmentTest.scala +++ b/kafka-connect-elastic6/src/test/scala/io/lenses/streamreactor/connect/elastic6/indexname/IndexNameFragmentTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticJsonWriter.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticJsonWriter.scala index 74c7bd063..c2fdb3208 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticJsonWriter.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticJsonWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkConnector.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkConnector.scala index 87fb0d1bd..6a5a0f64b 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkConnector.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkTask.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkTask.scala index 8d95fdbe2..23b2a4b58 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkTask.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticWriter.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticWriter.scala index 3e8094b51..f8d5cd20f 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticWriter.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/ElasticWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/KElasticClient.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/KElasticClient.scala index 6fcc2809d..323df66af 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/KElasticClient.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/KElasticClient.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/PrimaryKeyExtractor.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/PrimaryKeyExtractor.scala index b926e515f..5b54ff38e 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/PrimaryKeyExtractor.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/PrimaryKeyExtractor.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/Transform.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/Transform.scala index 3fdc9e12b..4eb4ea42d 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/Transform.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/Transform.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/TransformAndExtractPK.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/TransformAndExtractPK.scala index fe05cfe0a..ea3062e97 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/TransformAndExtractPK.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/TransformAndExtractPK.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticConfig.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticConfig.scala index 33cbe0b96..cc2eb85c7 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticConfig.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticConfigConstants.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticConfigConstants.scala index 4597f5f50..6de86f2d5 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticConfigConstants.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticConfigConstants.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticSettings.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticSettings.scala index 5c596dfa0..83341edd3 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticSettings.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/config/ElasticSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/CreateIndex.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/CreateIndex.scala index 79ace9f23..3b1f3822b 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/CreateIndex.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/CreateIndex.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/CustomIndexName.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/CustomIndexName.scala index 72b50b7f4..5ea265c02 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/CustomIndexName.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/CustomIndexName.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/IndexNameFragment.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/IndexNameFragment.scala index 91febec42..6581339ca 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/IndexNameFragment.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/IndexNameFragment.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/package.scala b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/package.scala index 0a8b3bf79..215bd6074 100644 --- a/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/package.scala +++ b/kafka-connect-elastic7/src/main/scala/io/lenses/streamreactor/connect/elastic7/indexname/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/CreateIndexTest.scala b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/CreateIndexTest.scala index d38791cea..740d3f125 100644 --- a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/CreateIndexTest.scala +++ b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/CreateIndexTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticConfigTest.scala b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticConfigTest.scala index 86f5a151d..f775f1c6f 100644 --- a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticConfigTest.scala +++ b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticConfigTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkConnectorTest.scala b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkConnectorTest.scala index 950744cc1..a0328a9f1 100644 --- a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkConnectorTest.scala +++ b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkConnectorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkTaskTest.scala b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkTaskTest.scala index 11222b310..042fdb6d9 100644 --- a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkTaskTest.scala +++ b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticSinkTaskTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticWriterCredentialsTest.scala b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticWriterCredentialsTest.scala index 347a4bbc3..3f8b2be63 100644 --- a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticWriterCredentialsTest.scala +++ b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/ElasticWriterCredentialsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/TestBase.scala b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/TestBase.scala index f002c4163..f97364d95 100644 --- a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/TestBase.scala +++ b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/TestBase.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/ClockFixture.scala b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/ClockFixture.scala index d019f9f9e..05780ec4a 100644 --- a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/ClockFixture.scala +++ b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/ClockFixture.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/CustomIndexNameTest.scala b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/CustomIndexNameTest.scala index eae40b0ee..62623c5ba 100644 --- a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/CustomIndexNameTest.scala +++ b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/CustomIndexNameTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/IndexNameFragmentTest.scala b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/IndexNameFragmentTest.scala index 141fab32e..6f897d7f7 100644 --- a/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/IndexNameFragmentTest.scala +++ b/kafka-connect-elastic7/src/test/scala/io/lenses/streamreactor/connect/elastic7/indexname/IndexNameFragmentTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/ConnectFileMetaDataStore.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/ConnectFileMetaDataStore.scala index d250aa330..4b595f13c 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/ConnectFileMetaDataStore.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/ConnectFileMetaDataStore.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/ExponentialBackOff.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/ExponentialBackOff.scala index 967c34b61..462af954b 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/ExponentialBackOff.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/ExponentialBackOff.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FileConverter.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FileConverter.scala index 927723e18..80ad0070a 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FileConverter.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FileConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FileMetaData.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FileMetaData.scala index 4dbc85058..94ab6bd88 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FileMetaData.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FileMetaData.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpFileLister.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpFileLister.scala index 0959529fd..5d25fdaf5 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpFileLister.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpFileLister.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpMonitor.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpMonitor.scala index b33ade98a..c78ba198d 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpMonitor.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpMonitor.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceConfig.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceConfig.scala index fd387f8dd..65f979767 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceConfig.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceConnector.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceConnector.scala index 4a47c7384..5924f9716 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceConnector.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceTask.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceTask.scala index 81dd7ed34..ed5853137 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceTask.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/FtpSourceTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/MaxLinesFileConverter.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/MaxLinesFileConverter.scala index 02c0ee0a5..ac671c3d1 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/MaxLinesFileConverter.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/MaxLinesFileConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/NopSourceRecordConverter.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/NopSourceRecordConverter.scala index 3fad7be7b..91d776feb 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/NopSourceRecordConverter.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/NopSourceRecordConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/OpTimer.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/OpTimer.scala index 3420c8a46..c1c780a54 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/OpTimer.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/OpTimer.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SFTPClient.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SFTPClient.scala index 3f5128e1e..f92abf043 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SFTPClient.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SFTPClient.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SimpleFileConverter.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SimpleFileConverter.scala index 732efaed4..ab686fcc2 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SimpleFileConverter.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SimpleFileConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SourceRecordConverter.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SourceRecordConverter.scala index 5bc5ce5b2..c48d7987a 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SourceRecordConverter.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SourceRecordConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SourceRecordProducers.scala b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SourceRecordProducers.scala index ef8f0e347..0f795b9c1 100644 --- a/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SourceRecordProducers.scala +++ b/kafka-connect-ftp/src/main/scala/io/lenses/streamreactor/connect/ftp/source/SourceRecordProducers.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/test/scala/io/lenses/streamreactor/connect/ftp/source/FtpFileListerTest.scala b/kafka-connect-ftp/src/test/scala/io/lenses/streamreactor/connect/ftp/source/FtpFileListerTest.scala index 0ed21c504..ce6a0f113 100644 --- a/kafka-connect-ftp/src/test/scala/io/lenses/streamreactor/connect/ftp/source/FtpFileListerTest.scala +++ b/kafka-connect-ftp/src/test/scala/io/lenses/streamreactor/connect/ftp/source/FtpFileListerTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-ftp/src/test/scala/io/lenses/streamreactor/connect/ftp/source/RegExTest.scala b/kafka-connect-ftp/src/test/scala/io/lenses/streamreactor/connect/ftp/source/RegExTest.scala index 69dda0371..2e69c24f4 100644 --- a/kafka-connect-ftp/src/test/scala/io/lenses/streamreactor/connect/ftp/source/RegExTest.scala +++ b/kafka-connect-ftp/src/test/scala/io/lenses/streamreactor/connect/ftp/source/RegExTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/InfluxSinkConnector.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/InfluxSinkConnector.scala index 3a05c0a18..8a1624395 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/InfluxSinkConnector.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/InfluxSinkConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/InfluxSinkTask.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/InfluxSinkTask.scala index a814d6af3..913464830 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/InfluxSinkTask.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/InfluxSinkTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/NanoClock.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/NanoClock.scala index 2c592f121..799cb899e 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/NanoClock.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/NanoClock.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/ValidateStringParameterFn.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/ValidateStringParameterFn.scala index 18fbd59c2..e5fcda361 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/ValidateStringParameterFn.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/ValidateStringParameterFn.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxConfig.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxConfig.scala index 3f2d5701d..bb9d695c0 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxConfig.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxConfigConstants.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxConfigConstants.scala index 741048a78..50e56b1f2 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxConfigConstants.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxConfigConstants.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxSettings.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxSettings.scala index 71d5334c5..5952a78d6 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxSettings.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/config/InfluxSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/converters/InfluxPoint.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/converters/InfluxPoint.scala index 5ca63f0ef..9ad269268 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/converters/InfluxPoint.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/converters/InfluxPoint.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/converters/SinkRecordParser.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/converters/SinkRecordParser.scala index a36d1f32a..28efcfe9e 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/converters/SinkRecordParser.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/converters/SinkRecordParser.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/helpers/Util.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/helpers/Util.scala index 62d37f39d..95db0b25d 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/helpers/Util.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/helpers/Util.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/InfluxBatchPointsBuilder.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/InfluxBatchPointsBuilder.scala index 31704a7b8..9cc24449d 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/InfluxBatchPointsBuilder.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/InfluxBatchPointsBuilder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/InfluxDbWriter.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/InfluxDbWriter.scala index 5d8457cd5..808ff3bcd 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/InfluxDbWriter.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/InfluxDbWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/ValuesExtractor.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/ValuesExtractor.scala index c98861b47..4fdc437cc 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/ValuesExtractor.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/ValuesExtractor.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/WriterFactoryFn.scala b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/WriterFactoryFn.scala index 581f06dd9..d8a6303da 100644 --- a/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/WriterFactoryFn.scala +++ b/kafka-connect-influxdb/src/main/scala/io/lenses/streamreactor/connect/influx/writers/WriterFactoryFn.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/InfluxBatchPointsBuilderTest.scala b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/InfluxBatchPointsBuilderTest.scala index 4353fe49e..e38480f14 100644 --- a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/InfluxBatchPointsBuilderTest.scala +++ b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/InfluxBatchPointsBuilderTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorJsonTest.scala b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorJsonTest.scala index 02fda68c4..02b4bf246 100644 --- a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorJsonTest.scala +++ b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorJsonTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorMapTest.scala b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorMapTest.scala index f8ff2cb83..3a84e65cf 100644 --- a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorMapTest.scala +++ b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorMapTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorStructTest.scala b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorStructTest.scala index 7d64c1622..3a0ab6d46 100644 --- a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorStructTest.scala +++ b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/ValuesExtractorStructTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/config/InfluxSettingsTest.scala b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/config/InfluxSettingsTest.scala index 454a75c71..c1240d887 100644 --- a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/config/InfluxSettingsTest.scala +++ b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/config/InfluxSettingsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/data/Foo.scala b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/data/Foo.scala index fb3342a22..9ea14e301 100644 --- a/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/data/Foo.scala +++ b/kafka-connect-influxdb/src/test/scala/io/lenses/streamreactor/connect/influx/data/Foo.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/common/converters/ByteArrayConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/common/converters/ByteArrayConverter.scala index 7f1b81ffd..08fe08c28 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/common/converters/ByteArrayConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/common/converters/ByteArrayConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/JMSSessionProvider.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/JMSSessionProvider.scala index bd293564f..31a443fe5 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/JMSSessionProvider.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/JMSSessionProvider.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigWrapper.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigWrapper.scala index fced40875..3be738879 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigWrapper.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigWrapper.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigurator.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigurator.scala index 423072c99..bbd9e9c22 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigurator.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigurator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/DestinationType.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/DestinationType.scala index 5f5bce2ff..bd0f47aa2 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/DestinationType.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/DestinationType.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSConfig.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSConfig.scala index cd3020e39..202a1a46e 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSConfig.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSConfigConstants.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSConfigConstants.scala index 40aa66637..0655b2a9a 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSConfigConstants.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSConfigConstants.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSSettings.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSSettings.scala index 406145763..79c1e1e1b 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSSettings.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/JMSSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/StorageOptions.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/StorageOptions.scala index 3af269b95..39e2f1449 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/StorageOptions.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/config/StorageOptions.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/ConverterClassLoader.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/ConverterClassLoader.scala index b774f32ec..87ab25094 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/ConverterClassLoader.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/ConverterClassLoader.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/ConverterLoaders.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/ConverterLoaders.scala index a9ea7bb26..1e0aa1bec 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/ConverterLoaders.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/ConverterLoaders.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/JMSMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/JMSMessageConverter.scala index 1b014b5f6..2e8041828 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/JMSMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/converters/JMSMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkConnector.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkConnector.scala index e754642b5..bc95e275a 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkConnector.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkTask.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkTask.scala index 6aa1f5be5..ff25ef6e2 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkTask.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/AvroMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/AvroMessageConverter.scala index 9c8e8b7f4..37a049978 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/AvroMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/AvroMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ByteMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ByteMessageConverter.scala index 901041935..8467c4e00 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ByteMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ByteMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSHeadersConverterWrapper.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSHeadersConverterWrapper.scala index d6115395a..996ec93ef 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSHeadersConverterWrapper.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSHeadersConverterWrapper.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSMessageConverterFn.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSMessageConverterFn.scala index dc6c5ff5b..efab56191 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSMessageConverterFn.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSMessageConverterFn.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSSinkMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSSinkMessageConverter.scala index b997d37ba..cfce42e5c 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSSinkMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JMSSinkMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JsonMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JsonMessageConverter.scala index 3ec3e3981..018364a40 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JsonMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/JsonMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/MapMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/MapMessageConverter.scala index 37f1c6f57..880bd3380 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/MapMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/MapMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ObjectMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ObjectMessageConverter.scala index 2e6a2fe40..ec0bdcb32 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ObjectMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ObjectMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoConverter.scala index 02580b113..73513d72b 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoDynamicConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoDynamicConverter.scala index 2d3740751..28b2ed8fe 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoDynamicConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoDynamicConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoMessageConverter.scala index 0ea92894f..7d7757b0c 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoStoredAsConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoStoredAsConverter.scala index e48cf8809..a80b238e1 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoStoredAsConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoStoredAsConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/TextMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/TextMessageConverter.scala index c3fbf4cdf..a68029867 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/TextMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/converters/TextMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/writers/JMSWriter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/writers/JMSWriter.scala index 2f3eaa627..2e234aeed 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/writers/JMSWriter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/sink/writers/JMSWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceConnector.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceConnector.scala index 2d0b93c8e..1c14e4c90 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceConnector.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceTask.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceTask.scala index f3a7790a3..d6168d54b 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceTask.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/CommonJMSMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/CommonJMSMessageConverter.scala index f97118e44..efa3a936a 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/CommonJMSMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/CommonJMSMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/JMSSourceMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/JMSSourceMessageConverter.scala index ae463ed86..14c0eac7a 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/JMSSourceMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/JMSSourceMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/JMSStructMessageConverter.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/JMSStructMessageConverter.scala index 76d70c79d..204f605e7 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/JMSStructMessageConverter.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/converters/JMSStructMessageConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/domain/JMSStructMessage.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/domain/JMSStructMessage.scala index 7403ed3e7..da75e2db6 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/domain/JMSStructMessage.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/domain/JMSStructMessage.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/readers/JMSReader.scala b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/readers/JMSReader.scala index c07306449..26e108d04 100644 --- a/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/readers/JMSReader.scala +++ b/kafka-connect-jms/src/main/scala/io/lenses/streamreactor/connect/jms/source/readers/JMSReader.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/TestBase.scala b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/TestBase.scala index d19e9f033..a54cf6b74 100644 --- a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/TestBase.scala +++ b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/TestBase.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigWrapperTest.scala b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigWrapperTest.scala index af3e6a810..892e1c627 100644 --- a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigWrapperTest.scala +++ b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/config/ConverterConfigWrapperTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/config/JMSSettingsTest.scala b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/config/JMSSettingsTest.scala index 419d76473..3bfcc17a0 100644 --- a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/config/JMSSettingsTest.scala +++ b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/config/JMSSettingsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkConnectorTest.scala b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkConnectorTest.scala index bca849113..7b5c3fb60 100644 --- a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkConnectorTest.scala +++ b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/JMSSinkConnectorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoDynamicConverterTest.scala b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoDynamicConverterTest.scala index d97ec7a4d..77dac3027 100644 --- a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoDynamicConverterTest.scala +++ b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoDynamicConverterTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoStoredAsConverterTest.scala b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoStoredAsConverterTest.scala index 241ca24b2..2ca117027 100644 --- a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoStoredAsConverterTest.scala +++ b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/sink/converters/ProtoStoredAsConverterTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceConnectorTest.scala b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceConnectorTest.scala index cfe404469..24f412921 100644 --- a/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceConnectorTest.scala +++ b/kafka-connect-jms/src/test/scala/io/lenses/streamreactor/connect/jms/source/JMSSourceConnectorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoConfig.scala b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoConfig.scala index 2e0f7650a..61e48512d 100644 --- a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoConfig.scala +++ b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoConfigConstants.scala b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoConfigConstants.scala index f72633801..a090be086 100644 --- a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoConfigConstants.scala +++ b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoConfigConstants.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoSettings.scala b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoSettings.scala index 55c00b85f..c8323031c 100644 --- a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoSettings.scala +++ b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/config/MongoSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/converters/SinkRecordConverter.scala b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/converters/SinkRecordConverter.scala index 707fb1dff..485d73fb5 100644 --- a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/converters/SinkRecordConverter.scala +++ b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/converters/SinkRecordConverter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/ConverterUtilProxy.scala b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/ConverterUtilProxy.scala index 12001b6e0..31eafee5c 100644 --- a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/ConverterUtilProxy.scala +++ b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/ConverterUtilProxy.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/KeysExtractor.scala b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/KeysExtractor.scala index f1730e063..32c793448 100644 --- a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/KeysExtractor.scala +++ b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/KeysExtractor.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkConnector.scala b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkConnector.scala index b3aa6cb85..48288c00b 100644 --- a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkConnector.scala +++ b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkTask.scala b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkTask.scala index fa62d6382..6bc72d9a2 100644 --- a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkTask.scala +++ b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoWriter.scala b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoWriter.scala index 99e5d453f..742afbf4c 100644 --- a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoWriter.scala +++ b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/SinkRecordToDocument.scala b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/SinkRecordToDocument.scala index 1cf4c25c9..377d9d0f5 100644 --- a/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/SinkRecordToDocument.scala +++ b/kafka-connect-mongodb/src/main/scala/io/lenses/streamreactor/connect/mongodb/sink/SinkRecordToDocument.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/SinkRecordToDocumentTest.scala b/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/SinkRecordToDocumentTest.scala index 6567694b0..e70bf433b 100644 --- a/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/SinkRecordToDocumentTest.scala +++ b/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/SinkRecordToDocumentTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/config/MongoSettingsTest.scala b/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/config/MongoSettingsTest.scala index e4e4d4be3..8476e4426 100644 --- a/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/config/MongoSettingsTest.scala +++ b/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/config/MongoSettingsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/converters/SinkRecordConverterTest.scala b/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/converters/SinkRecordConverterTest.scala index fcee63119..d5de82f28 100644 --- a/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/converters/SinkRecordConverterTest.scala +++ b/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/converters/SinkRecordConverterTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/sink/KeysExtractorTest.scala b/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/sink/KeysExtractorTest.scala index 71e12a296..95af6befc 100644 --- a/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/sink/KeysExtractorTest.scala +++ b/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/sink/KeysExtractorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkConnectorTest.scala b/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkConnectorTest.scala index 82c512b72..5e4edb7d7 100644 --- a/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkConnectorTest.scala +++ b/kafka-connect-mongodb/src/test/scala/io/lenses/streamreactor/connect/mongodb/sink/MongoSinkConnectorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttConfig.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttConfig.scala index 7c13a4fad..b04c90be0 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttConfig.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttConfigConstants.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttConfigConstants.scala index 5fe15ef41..9edbb3928 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttConfigConstants.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttConfigConstants.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSinkSettings.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSinkSettings.scala index e4d23705c..65737ed6c 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSinkSettings.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSinkSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSourceSettings.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSourceSettings.scala index 1a35e6d93..f7af1e764 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSourceSettings.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSourceSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/connection/MqttClientConnectionFn.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/connection/MqttClientConnectionFn.scala index 38359b919..98ce2e42d 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/connection/MqttClientConnectionFn.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/connection/MqttClientConnectionFn.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkConnector.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkConnector.scala index 8d6e291ff..37753b44a 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkConnector.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkTask.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkTask.scala index 91fb0d0f9..70399b514 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkTask.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttWriter.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttWriter.scala index 71902a6ca..85ecf58e1 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttWriter.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttManager.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttManager.scala index 63d0acbee..3e8dd481e 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttManager.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttManager.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSSLSocketFactory.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSSLSocketFactory.scala index 75d392fc2..469be0048 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSSLSocketFactory.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSSLSocketFactory.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceConnector.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceConnector.scala index fdac61361..c5402fddf 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceConnector.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceTask.scala b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceTask.scala index 16ff28389..b21bb3f00 100644 --- a/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceTask.scala +++ b/kafka-connect-mqtt/src/main/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/Stype.scala b/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/Stype.scala index f10e9af45..dab738b86 100644 --- a/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/Stype.scala +++ b/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/Stype.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSourceSettingsTest.scala b/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSourceSettingsTest.scala index 8534c27e6..ba7507721 100644 --- a/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSourceSettingsTest.scala +++ b/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/config/MqttSourceSettingsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkConnectorTest.scala b/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkConnectorTest.scala index 6ed3fd7b2..fad185003 100644 --- a/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkConnectorTest.scala +++ b/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/sink/MqttSinkConnectorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceConnectorTest.scala b/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceConnectorTest.scala index 26b7f8e30..54154ee3b 100644 --- a/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceConnectorTest.scala +++ b/kafka-connect-mqtt/src/test/scala/io/lenses/streamreactor/connect/mqtt/source/MqttSourceConnectorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/Bucketing.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/Bucketing.java index c26df63f7..2f75a6ca7 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/Bucketing.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/Bucketing.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/CompressionType.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/CompressionType.java index 63762382a..6a0297eff 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/CompressionType.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/CompressionType.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/EnumsHelper.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/EnumsHelper.java index 4bfa369ee..d838babe3 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/EnumsHelper.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/EnumsHelper.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/Field.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/Field.java index fe29fdf6f..b36daa6db 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/Field.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/Field.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/FieldType.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/FieldType.java index 4843cf179..8420f3ade 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/FieldType.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/FieldType.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/FormatType.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/FormatType.java index 5644bf536..058a044ba 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/FormatType.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/FormatType.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/Kcql.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/Kcql.java index 5ff1b25ab..d9fe0cbba 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/Kcql.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/Kcql.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/KcqlException.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/KcqlException.java index 27df70945..a1bf57846 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/KcqlException.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/KcqlException.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/PartitionOffset.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/PartitionOffset.java index bdf26d75c..30894c88d 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/PartitionOffset.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/PartitionOffset.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/PartitioningStrategy.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/PartitioningStrategy.java index 8d2b734f7..d56c2abda 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/PartitioningStrategy.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/PartitioningStrategy.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/SchemaEvolution.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/SchemaEvolution.java index a786bad3b..934891d17 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/SchemaEvolution.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/SchemaEvolution.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/Tag.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/Tag.java index 849a496c9..658ae4f25 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/Tag.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/Tag.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/main/java/io/lenses/kcql/WriteModeEnum.java b/kafka-connect-query-language/src/main/java/io/lenses/kcql/WriteModeEnum.java index 2ddcbef66..f9d138f0f 100644 --- a/kafka-connect-query-language/src/main/java/io/lenses/kcql/WriteModeEnum.java +++ b/kafka-connect-query-language/src/main/java/io/lenses/kcql/WriteModeEnum.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlNestedFieldTest.scala b/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlNestedFieldTest.scala index 188c947d1..ff11227f1 100644 --- a/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlNestedFieldTest.scala +++ b/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlNestedFieldTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlPropertiesTest.scala b/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlPropertiesTest.scala index e80cb67b7..aea0ddf8f 100644 --- a/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlPropertiesTest.scala +++ b/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlPropertiesTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlSelectOnlyTest.scala b/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlSelectOnlyTest.scala index 9bd33d7eb..3d9a70799 100644 --- a/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlSelectOnlyTest.scala +++ b/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlSelectOnlyTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlTest.scala b/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlTest.scala index 9cdabae93..57f9221dd 100644 --- a/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlTest.scala +++ b/kafka-connect-query-language/src/test/java/io/lenses/kcql/KcqlTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/JedisClientBuilder.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/JedisClientBuilder.scala index c81800225..35d6fdf3d 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/JedisClientBuilder.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/JedisClientBuilder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkConnector.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkConnector.scala index 0d1a3196f..a36c88db8 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkConnector.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkConnector.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkTask.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkTask.scala index 59eeddc21..cb5124683 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkTask.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkTask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfig.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfig.scala index 0db99359a..18a44e292 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfig.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfigConstants.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfigConstants.scala index 18d60014e..f86114f88 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfigConstants.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfigConstants.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisSinkSettings.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisSinkSettings.scala index b48a4f758..21dcca04b 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisSinkSettings.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisSinkSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/GeoAddSupport.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/GeoAddSupport.scala index a37555216..50fea13ef 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/GeoAddSupport.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/GeoAddSupport.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/PubSubSupport.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/PubSubSupport.scala index 61f3aa48a..3466d7ace 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/PubSubSupport.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/PubSubSupport.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisCache.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisCache.scala index ef2e3d97c..c3ddad362 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisCache.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisCache.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisGeoAdd.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisGeoAdd.scala index cd64ae4d1..ccc9992d7 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisGeoAdd.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisGeoAdd.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisInsertSortedSet.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisInsertSortedSet.scala index 28f32e69d..78fae17ae 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisInsertSortedSet.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisInsertSortedSet.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisMultipleSortedSets.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisMultipleSortedSets.scala index 459826866..c93c413c8 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisMultipleSortedSets.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisMultipleSortedSets.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisPubSub.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisPubSub.scala index c4591fb7b..623044851 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisPubSub.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisPubSub.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisStreams.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisStreams.scala index c248f488b..9dd134acf 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisStreams.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisStreams.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisWriter.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisWriter.scala index 912da38bf..95c2072e8 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisWriter.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/SortedSetSupport.scala b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/SortedSetSupport.scala index 3f09f9070..6d5de0704 100644 --- a/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/SortedSetSupport.scala +++ b/kafka-connect-redis/src/main/scala/io/lenses/streamreactor/connect/redis/sink/writer/SortedSetSupport.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkTaskTest.scala b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkTaskTest.scala index a4c8bc387..e2d3ad29d 100644 --- a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkTaskTest.scala +++ b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/RedisSinkTaskTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigGeoAddTest.scala b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigGeoAddTest.scala index db64f6799..3acb6ebf8 100644 --- a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigGeoAddTest.scala +++ b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigGeoAddTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigInsertSortedSetTest.scala b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigInsertSortedSetTest.scala index 15c4616dd..523e92645 100644 --- a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigInsertSortedSetTest.scala +++ b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigInsertSortedSetTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigMultipleSortedSetsTest.scala b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigMultipleSortedSetsTest.scala index 3cd2042c6..0d958b900 100644 --- a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigMultipleSortedSetsTest.scala +++ b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/ConfigMultipleSortedSetsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfigTest.scala b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfigTest.scala index 2057da890..4b4dd4268 100644 --- a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfigTest.scala +++ b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisConfigTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisSinkSettingsTest.scala b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisSinkSettingsTest.scala index 79258aa0e..58770eca8 100644 --- a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisSinkSettingsTest.scala +++ b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/config/RedisSinkSettingsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/support/RedisMockSupport.scala b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/support/RedisMockSupport.scala index 0f7f43be4..3cd6d6125 100644 --- a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/support/RedisMockSupport.scala +++ b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/support/RedisMockSupport.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisStreamTest.scala b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisStreamTest.scala index a59dfbc32..412d0789c 100644 --- a/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisStreamTest.scala +++ b/kafka-connect-redis/src/test/scala/io/lenses/streamreactor/connect/redis/sink/writer/RedisStreamTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Lenses.io Ltd + * Copyright 2017-2024 Lenses.io Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 24f9dfa5c..57a58bac8 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -38,7 +38,6 @@ object Dependencies { "typesafe" at "https://repo.typesafe.com/typesafe/releases/", "cloudera" at "https://repository.cloudera.com/artifactory/cloudera-repos/", "jitpack" at "https://jitpack.io", - "twitter" at "https://maven.twttr.com/", ) object Versions { @@ -95,7 +94,6 @@ object Dependencies { val xzVersion = "1.9" val lz4Version = "1.8.0" - val lzoVersion = "0.4.19" val californiumVersion = "3.5.0" val bouncyCastleVersion = "1.70" @@ -361,9 +359,8 @@ object Dependencies { lazy val jedis = "redis.clients" % "jedis" % jedisVersion lazy val gson = "com.google.code.gson" % "gson" % gsonVersion - lazy val xz = "org.tukaani" % "xz" % xzVersion - lazy val lz4 = "org.lz4" % "lz4-java" % lz4Version - lazy val lzo = "com.hadoop.gplcompression" % "hadoop-lzo" % lzoVersion + lazy val xz = "org.tukaani" % "xz" % xzVersion + lazy val lz4 = "org.lz4" % "lz4-java" % lz4Version def hiveExcludes(moduleID: ModuleID): ModuleID = moduleID @@ -469,7 +466,7 @@ trait Dependencies { stsSdk, ) - val compressionCodecDeps: Seq[ModuleID] = Seq(xz, lzo, lz4) + val compressionCodecDeps: Seq[ModuleID] = Seq(xz, lz4) val kafkaConnectAzureDatalakeDeps: Seq[ModuleID] = Seq( azureDataLakeSdk,