diff --git a/build.gradle b/build.gradle index 52971fd4..9a054309 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index 610e5174..5d88d0aa 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/buildSrc/src/main/groovy/micronaut-compatibility.gradle b/buildSrc/src/main/groovy/micronaut-compatibility.gradle index 651852ad..408ade10 100644 --- a/buildSrc/src/main/groovy/micronaut-compatibility.gradle +++ b/buildSrc/src/main/groovy/micronaut-compatibility.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/docs/guide/guide.gradle b/docs/guide/guide.gradle index 921412f7..2d2aacc0 100644 --- a/docs/guide/guide.gradle +++ b/docs/guide/guide.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/micronaut-worker-example/micronaut-worker-example.gradle b/examples/micronaut-worker-example/micronaut-worker-example.gradle index e0da25ec..0259f988 100644 --- a/examples/micronaut-worker-example/micronaut-worker-example.gradle +++ b/examples/micronaut-worker-example/micronaut-worker-example.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/gradle.properties b/gradle.properties index 9bfd3b72..31b8754f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -# Copyright 2022 Agorapulse. +# Copyright 2021-2023 Agorapulse. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -15,6 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # + slug=agorapulse/micronaut-worker group=com.agorapulse version=1.0.0-SNAPSHOT diff --git a/gradle/LICENSE_HEADER b/gradle/LICENSE_HEADER index e30635f3..b6307f98 100644 --- a/gradle/LICENSE_HEADER +++ b/gradle/LICENSE_HEADER @@ -1,6 +1,6 @@ SPDX-License-Identifier: Apache-2.0 -Copyright ${copyrightYear} Agorapulse. +Copyright 2021-${copyrightYear} Agorapulse. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-executor-redis/micronaut-worker-executor-redis.gradle b/libs/micronaut-worker-executor-redis/micronaut-worker-executor-redis.gradle index 481969f2..df5cb372 100644 --- a/libs/micronaut-worker-executor-redis/micronaut-worker-executor-redis.gradle +++ b/libs/micronaut-worker-executor-redis/micronaut-worker-executor-redis.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-executor-redis/src/main/java/com/agorapulse/worker/redis/HostnameFactory.java b/libs/micronaut-worker-executor-redis/src/main/java/com/agorapulse/worker/redis/HostnameFactory.java index 6d6529c3..0327f2ba 100644 --- a/libs/micronaut-worker-executor-redis/src/main/java/com/agorapulse/worker/redis/HostnameFactory.java +++ b/libs/micronaut-worker-executor-redis/src/main/java/com/agorapulse/worker/redis/HostnameFactory.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-executor-redis/src/main/java/com/agorapulse/worker/redis/RedisJobExecutor.java b/libs/micronaut-worker-executor-redis/src/main/java/com/agorapulse/worker/redis/RedisJobExecutor.java index 11baac24..e90d9419 100644 --- a/libs/micronaut-worker-executor-redis/src/main/java/com/agorapulse/worker/redis/RedisJobExecutor.java +++ b/libs/micronaut-worker-executor-redis/src/main/java/com/agorapulse/worker/redis/RedisJobExecutor.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-executor-redis/src/test/groovy/com/agorapulse/worker/redis/RedisJobExecutorSpec.groovy b/libs/micronaut-worker-executor-redis/src/test/groovy/com/agorapulse/worker/redis/RedisJobExecutorSpec.groovy index aed63b4f..825fb8f8 100644 --- a/libs/micronaut-worker-executor-redis/src/test/groovy/com/agorapulse/worker/redis/RedisJobExecutorSpec.groovy +++ b/libs/micronaut-worker-executor-redis/src/test/groovy/com/agorapulse/worker/redis/RedisJobExecutorSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-executor-redis/src/test/resources/log4j2.xml b/libs/micronaut-worker-executor-redis/src/test/resources/log4j2.xml index 264d161e..ff3f1588 100644 --- a/libs/micronaut-worker-executor-redis/src/test/resources/log4j2.xml +++ b/libs/micronaut-worker-executor-redis/src/test/resources/log4j2.xml @@ -3,7 +3,7 @@ SPDX-License-Identifier: Apache-2.0 - Copyright 2022 Agorapulse. + Copyright 2021-2023 Agorapulse. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-management/micronaut-worker-management.gradle b/libs/micronaut-worker-management/micronaut-worker-management.gradle index 764ba0ec..b891a2b5 100644 --- a/libs/micronaut-worker-management/micronaut-worker-management.gradle +++ b/libs/micronaut-worker-management/micronaut-worker-management.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-management/src/main/java/com/agorapulse/worker/management/JobsEndpoint.java b/libs/micronaut-worker-management/src/main/java/com/agorapulse/worker/management/JobsEndpoint.java index a0f8f11b..2e5da931 100644 --- a/libs/micronaut-worker-management/src/main/java/com/agorapulse/worker/management/JobsEndpoint.java +++ b/libs/micronaut-worker-management/src/main/java/com/agorapulse/worker/management/JobsEndpoint.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-management/src/test/groovy/com/agorapulse/worker/management/JobsEndpointSpec.groovy b/libs/micronaut-worker-management/src/test/groovy/com/agorapulse/worker/management/JobsEndpointSpec.groovy index 69829e27..06b4c330 100644 --- a/libs/micronaut-worker-management/src/test/groovy/com/agorapulse/worker/management/JobsEndpointSpec.groovy +++ b/libs/micronaut-worker-management/src/test/groovy/com/agorapulse/worker/management/JobsEndpointSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-redis/micronaut-worker-queues-redis.gradle b/libs/micronaut-worker-queues-redis/micronaut-worker-queues-redis.gradle index 93cb52e6..5b93f695 100644 --- a/libs/micronaut-worker-queues-redis/micronaut-worker-queues-redis.gradle +++ b/libs/micronaut-worker-queues-redis/micronaut-worker-queues-redis.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/ConnectionFactory.java b/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/ConnectionFactory.java index abaa85ff..d16c6d98 100644 --- a/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/ConnectionFactory.java +++ b/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/ConnectionFactory.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisPoolConfiguration.java b/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisPoolConfiguration.java index 13a48bdd..35fa6abe 100644 --- a/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisPoolConfiguration.java +++ b/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisPoolConfiguration.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisQueues.java b/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisQueues.java index f4d2ce66..b4a9482f 100644 --- a/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisQueues.java +++ b/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisQueues.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisQueuesFactory.java b/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisQueuesFactory.java index 82a9277e..c2570e59 100644 --- a/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisQueuesFactory.java +++ b/libs/micronaut-worker-queues-redis/src/main/java/com/agorapulse/worker/queues/redis/RedisQueuesFactory.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-redis/src/test/groovy/com/agorapulse/worker/queues/redis/RedisQueuesSpec.groovy b/libs/micronaut-worker-queues-redis/src/test/groovy/com/agorapulse/worker/queues/redis/RedisQueuesSpec.groovy index ae8df01b..a80f8384 100644 --- a/libs/micronaut-worker-queues-redis/src/test/groovy/com/agorapulse/worker/queues/redis/RedisQueuesSpec.groovy +++ b/libs/micronaut-worker-queues-redis/src/test/groovy/com/agorapulse/worker/queues/redis/RedisQueuesSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v1/micronaut-worker-queues-sqs-v1.gradle b/libs/micronaut-worker-queues-sqs-v1/micronaut-worker-queues-sqs-v1.gradle index 3cecafa5..9b1491ce 100644 --- a/libs/micronaut-worker-queues-sqs-v1/micronaut-worker-queues-sqs-v1.gradle +++ b/libs/micronaut-worker-queues-sqs-v1/micronaut-worker-queues-sqs-v1.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v1/src/main/java/com/agorapulse/worker/sqs/v1/SqsQueues.java b/libs/micronaut-worker-queues-sqs-v1/src/main/java/com/agorapulse/worker/sqs/v1/SqsQueues.java index de72520c..21afe11a 100644 --- a/libs/micronaut-worker-queues-sqs-v1/src/main/java/com/agorapulse/worker/sqs/v1/SqsQueues.java +++ b/libs/micronaut-worker-queues-sqs-v1/src/main/java/com/agorapulse/worker/sqs/v1/SqsQueues.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v1/src/main/java/com/agorapulse/worker/sqs/v1/SqsQueuesFactory.java b/libs/micronaut-worker-queues-sqs-v1/src/main/java/com/agorapulse/worker/sqs/v1/SqsQueuesFactory.java index 708da6d9..db1510f5 100644 --- a/libs/micronaut-worker-queues-sqs-v1/src/main/java/com/agorapulse/worker/sqs/v1/SqsQueuesFactory.java +++ b/libs/micronaut-worker-queues-sqs-v1/src/main/java/com/agorapulse/worker/sqs/v1/SqsQueuesFactory.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesFactorySpec.groovy b/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesFactorySpec.groovy index 30abc27e..ee44c84f 100644 --- a/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesFactorySpec.groovy +++ b/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesFactorySpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesSpec.groovy b/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesSpec.groovy index 005e1796..1b217c14 100644 --- a/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesSpec.groovy +++ b/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesUnitSpec.groovy b/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesUnitSpec.groovy index 3ae6d623..c6a2a3a2 100644 --- a/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesUnitSpec.groovy +++ b/libs/micronaut-worker-queues-sqs-v1/src/test/groovy/com/agorapulse/worker/sqs/v1/SqsQueuesUnitSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v2/micronaut-worker-queues-sqs-v2.gradle b/libs/micronaut-worker-queues-sqs-v2/micronaut-worker-queues-sqs-v2.gradle index add837f3..db6c0a9f 100644 --- a/libs/micronaut-worker-queues-sqs-v2/micronaut-worker-queues-sqs-v2.gradle +++ b/libs/micronaut-worker-queues-sqs-v2/micronaut-worker-queues-sqs-v2.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v2/src/main/java/com/agorapulse/worker/sqs/v2/SqsQueues.java b/libs/micronaut-worker-queues-sqs-v2/src/main/java/com/agorapulse/worker/sqs/v2/SqsQueues.java index b671e7cb..e62fc222 100644 --- a/libs/micronaut-worker-queues-sqs-v2/src/main/java/com/agorapulse/worker/sqs/v2/SqsQueues.java +++ b/libs/micronaut-worker-queues-sqs-v2/src/main/java/com/agorapulse/worker/sqs/v2/SqsQueues.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v2/src/main/java/com/agorapulse/worker/sqs/v2/SqsQueuesFactory.java b/libs/micronaut-worker-queues-sqs-v2/src/main/java/com/agorapulse/worker/sqs/v2/SqsQueuesFactory.java index de2a90fa..6c7cc7d4 100644 --- a/libs/micronaut-worker-queues-sqs-v2/src/main/java/com/agorapulse/worker/sqs/v2/SqsQueuesFactory.java +++ b/libs/micronaut-worker-queues-sqs-v2/src/main/java/com/agorapulse/worker/sqs/v2/SqsQueuesFactory.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesFactorySpec.groovy b/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesFactorySpec.groovy index f3615dcc..143f619e 100644 --- a/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesFactorySpec.groovy +++ b/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesFactorySpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesSpec.groovy b/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesSpec.groovy index e9912ff8..33864446 100644 --- a/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesSpec.groovy +++ b/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesUnitSpec.groovy b/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesUnitSpec.groovy index e632413f..3ab339f0 100644 --- a/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesUnitSpec.groovy +++ b/libs/micronaut-worker-queues-sqs-v2/src/test/groovy/com/agorapulse/worker/sqs/v2/SqsQueuesUnitSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-tck/micronaut-worker-tck.gradle b/libs/micronaut-worker-tck/micronaut-worker-tck.gradle index d5d2c0e5..cdae4188 100644 --- a/libs/micronaut-worker-tck/micronaut-worker-tck.gradle +++ b/libs/micronaut-worker-tck/micronaut-worker-tck.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/executor/AbstractJobExecutorSpec.groovy b/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/executor/AbstractJobExecutorSpec.groovy index ac97a8ab..ba48800f 100644 --- a/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/executor/AbstractJobExecutorSpec.groovy +++ b/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/executor/AbstractJobExecutorSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/executor/LongRunningJob.groovy b/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/executor/LongRunningJob.groovy index 8f64b248..3afaa279 100644 --- a/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/executor/LongRunningJob.groovy +++ b/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/executor/LongRunningJob.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/queue/AbstractQueuesSpec.groovy b/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/queue/AbstractQueuesSpec.groovy index 8bcf1c54..a2375104 100644 --- a/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/queue/AbstractQueuesSpec.groovy +++ b/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/queue/AbstractQueuesSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/queue/SendWordsJob.groovy b/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/queue/SendWordsJob.groovy index 8fcfd969..d8cc80f4 100644 --- a/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/queue/SendWordsJob.groovy +++ b/libs/micronaut-worker-tck/src/main/groovy/com/agorapulse/worker/tck/queue/SendWordsJob.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/micronaut-worker.gradle b/libs/micronaut-worker/micronaut-worker.gradle index e68d440f..033eb13b 100644 --- a/libs/micronaut-worker/micronaut-worker.gradle +++ b/libs/micronaut-worker/micronaut-worker.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/Job.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/Job.java index 0bb61dd4..bdfc1f2a 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/Job.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/Job.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobConfiguration.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobConfiguration.java index 6c815af3..b709c7e9 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobConfiguration.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobConfiguration.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobConfigurationException.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobConfigurationException.java index 906d22b4..d41e88a1 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobConfigurationException.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobConfigurationException.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobInfo.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobInfo.java index 2f978535..54724f19 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobInfo.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobInfo.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobManager.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobManager.java index 1d2500ef..81ff76a3 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobManager.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobManager.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobScheduler.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobScheduler.java index d2f596b5..cd29e40b 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobScheduler.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobScheduler.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobStatus.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobStatus.java index e1849ebf..f3bf4796 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobStatus.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/JobStatus.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/WorkerConfiguration.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/WorkerConfiguration.java index 26279549..ff876f1c 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/WorkerConfiguration.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/WorkerConfiguration.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Concurrency.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Concurrency.java index c5cc23c0..65ec82b9 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Concurrency.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Concurrency.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Consecutive.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Consecutive.java index b9a814ff..73abe223 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Consecutive.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Consecutive.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Consumes.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Consumes.java index 4ac8b404..0082f388 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Consumes.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Consumes.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Cron.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Cron.java index 7b3b085e..80b7c1af 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Cron.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Cron.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FixedDelay.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FixedDelay.java index 67630036..a0d76c59 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FixedDelay.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FixedDelay.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FixedRate.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FixedRate.java index f895fab3..0eadaaa0 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FixedRate.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FixedRate.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FollowerOnly.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FollowerOnly.java index 293a4edb..dd9d39aa 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FollowerOnly.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/FollowerOnly.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Fork.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Fork.java index 5c9e1598..842b13f3 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Fork.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Fork.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/InitialDelay.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/InitialDelay.java index ea2aca07..c409d8ee 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/InitialDelay.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/InitialDelay.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Job.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Job.java index 2f52135f..d45417c0 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Job.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Job.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/LeaderOnly.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/LeaderOnly.java index a455d915..2b318430 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/LeaderOnly.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/LeaderOnly.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Produces.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Produces.java index c62c3bd4..7def5ef0 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Produces.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/annotation/Produces.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/DefaultJobConfiguration.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/DefaultJobConfiguration.java index 8cb97190..a52f656a 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/DefaultJobConfiguration.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/DefaultJobConfiguration.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/DefaultWorkerConfiguration.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/DefaultWorkerConfiguration.java index b0319b30..c9ae7e04 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/DefaultWorkerConfiguration.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/DefaultWorkerConfiguration.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/MutableJobConfiguration.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/MutableJobConfiguration.java index e3295dfe..54014e37 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/MutableJobConfiguration.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/configuration/MutableJobConfiguration.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/ConsoleJobManager.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/ConsoleJobManager.java index 9006903b..aed5c338 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/ConsoleJobManager.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/ConsoleJobManager.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/JobAccessor.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/JobAccessor.java index 66258418..7263d0e6 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/JobAccessor.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/JobAccessor.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/JobsBindingProvider.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/JobsBindingProvider.java index 834ed979..6ec8ecbc 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/JobsBindingProvider.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/console/JobsBindingProvider.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobEventsLogger.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobEventsLogger.java index c229ed77..6f9cdd0d 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobEventsLogger.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobEventsLogger.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionFinishedEvent.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionFinishedEvent.java index 0083cbb8..d20a4673 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionFinishedEvent.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionFinishedEvent.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionResultEvent.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionResultEvent.java index 396f6b2a..f9b260b8 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionResultEvent.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionResultEvent.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionStartedEvent.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionStartedEvent.java index 9df5369b..1ce9a4bb 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionStartedEvent.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/event/JobExecutionStartedEvent.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/executor/DistributedJobExecutor.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/executor/DistributedJobExecutor.java index 6293ea1f..8a6cc59d 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/executor/DistributedJobExecutor.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/executor/DistributedJobExecutor.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/JobBuilder.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/JobBuilder.java index 19644182..71f120a1 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/JobBuilder.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/JobBuilder.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/WorkerExtensions.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/WorkerExtensions.java index 11c42710..109aba78 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/WorkerExtensions.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/WorkerExtensions.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/WorkerStaticExtensions.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/WorkerStaticExtensions.java index a5999e7f..3fd3f9e1 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/WorkerStaticExtensions.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/groovy/WorkerStaticExtensions.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/AbstractJob.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/AbstractJob.java index a4a1f390..dd70d126 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/AbstractJob.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/AbstractJob.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/ConcurrentJobStatus.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/ConcurrentJobStatus.java index 1acd4ce7..cfbecc9d 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/ConcurrentJobStatus.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/ConcurrentJobStatus.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/SimpleJob.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/SimpleJob.java index 65e5dab4..1051b202 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/SimpleJob.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/job/SimpleJob.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/json/DurationSerializer.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/json/DurationSerializer.java index b9c82abc..4e76fc53 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/json/DurationSerializer.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/json/DurationSerializer.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/json/StacktraceSerializer.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/json/StacktraceSerializer.java index a43612c0..76521fb7 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/json/StacktraceSerializer.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/json/StacktraceSerializer.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalJobExecutor.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalJobExecutor.java index cd9a595e..6775eec0 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalJobExecutor.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalJobExecutor.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalQueues.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalQueues.java index 1736eb7f..5e532b75 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalQueues.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalQueues.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalWorkerFactory.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalWorkerFactory.java index fafc8cce..f6fed01e 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalWorkerFactory.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/local/LocalWorkerFactory.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/manager/DefaultJobManager.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/manager/DefaultJobManager.java index c39efd35..b9e120a6 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/manager/DefaultJobManager.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/manager/DefaultJobManager.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/DefaultMethodJobInvoker.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/DefaultMethodJobInvoker.java index 5dbbef44..7e939bf8 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/DefaultMethodJobInvoker.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/DefaultMethodJobInvoker.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJob.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJob.java index 42553a85..f21e9f62 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJob.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJob.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJobInvoker.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJobInvoker.java index 034d3e04..02780434 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJobInvoker.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJobInvoker.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJobProcessor.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJobProcessor.java index 10503da8..a8a7cf91 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJobProcessor.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/processor/MethodJobProcessor.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/queue/JobQueues.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/queue/JobQueues.java index a7721e42..de546288 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/queue/JobQueues.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/queue/JobQueues.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/report/JobReport.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/report/JobReport.java index 715626d0..c7127fc4 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/report/JobReport.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/report/JobReport.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/schedule/DefaultJobScheduler.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/schedule/DefaultJobScheduler.java index 17ac78c5..dcf1845a 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/schedule/DefaultJobScheduler.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/schedule/DefaultJobScheduler.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/snitch/SnitchJobListener.java b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/snitch/SnitchJobListener.java index ea78463a..89f9cbfb 100644 --- a/libs/micronaut-worker/src/main/java/com/agorapulse/worker/snitch/SnitchJobListener.java +++ b/libs/micronaut-worker/src/main/java/com/agorapulse/worker/snitch/SnitchJobListener.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobConfigurationIntegrationSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobConfigurationIntegrationSpec.groovy index eb135506..817eadf7 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobConfigurationIntegrationSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobConfigurationIntegrationSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobConfigurationSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobConfigurationSpec.groovy index 60ba867d..da3956f6 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobConfigurationSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobConfigurationSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobManagerSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobManagerSpec.groovy index 8e732b41..9d84dccc 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobManagerSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/JobManagerSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/WorkerConfigurationSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/WorkerConfigurationSpec.groovy index 03867f69..4cd07b71 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/WorkerConfigurationSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/WorkerConfigurationSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/CronSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/CronSpec.groovy index aedac814..2f5ae3c2 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/CronSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/CronSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/FixedDelaySpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/FixedDelaySpec.groovy index 537c7d4f..92975f56 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/FixedDelaySpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/FixedDelaySpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/FixedRateSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/FixedRateSpec.groovy index 6458b5dc..7f2bbc19 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/FixedRateSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/FixedRateSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/InitialDelaySpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/InitialDelaySpec.groovy index 392c14f9..16bd35d6 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/InitialDelaySpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/InitialDelaySpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/PipeSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/PipeSpec.groovy index 4df71115..5622bf21 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/PipeSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/annotation/PipeSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/ConsoleSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/ConsoleSpec.groovy index fec3c460..ff81edb8 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/ConsoleSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/ConsoleSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/JobAccessorSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/JobAccessorSpec.groovy index cfe6bb0a..b967f87b 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/JobAccessorSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/JobAccessorSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/JobsBindingProviderSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/JobsBindingProviderSpec.groovy index 2b9284ac..45bfa850 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/JobsBindingProviderSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/console/JobsBindingProviderSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/local/LocalJobExecutorSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/local/LocalJobExecutorSpec.groovy index 568fb51c..74860ea3 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/local/LocalJobExecutorSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/local/LocalJobExecutorSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/local/LocalQueuesSpec.groovy b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/local/LocalQueuesSpec.groovy index cf1a6b20..9f940048 100644 --- a/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/local/LocalQueuesSpec.groovy +++ b/libs/micronaut-worker/src/test/groovy/com/agorapulse/worker/local/LocalQueuesSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libs/micronaut-worker/src/test/resources/log4j2.xml b/libs/micronaut-worker/src/test/resources/log4j2.xml index 264d161e..ff3f1588 100644 --- a/libs/micronaut-worker/src/test/resources/log4j2.xml +++ b/libs/micronaut-worker/src/test/resources/log4j2.xml @@ -3,7 +3,7 @@ SPDX-License-Identifier: Apache-2.0 - Copyright 2022 Agorapulse. + Copyright 2021-2023 Agorapulse. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/settings.gradle b/settings.gradle index 5b29ad7e..b23cd132 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022 Agorapulse. + * Copyright 2021-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.