From 1e971e4d5c2a73d9dad718ccbde789c2c32b2258 Mon Sep 17 00:00:00 2001 From: Karim Dibo Date: Tue, 21 Nov 2023 14:38:30 +0100 Subject: [PATCH 1/3] Add authentication on service client --- .../micronaut/newrelic/NewRelicInsightsServiceClient.java | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsServiceClient.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsServiceClient.java index f4d81da..c742a26 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsServiceClient.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsServiceClient.java @@ -27,6 +27,7 @@ import java.util.Map; +@NewRelicInsights @Client("newrelic-insights") @Requires(property = "micronaut.http.services.newrelic-insights.url", classes = HttpClient.class, beans = NewRelicInsightsClientFilter.class) @Replaces(NewRelicInsightsUrlClient.class) From 4b81885c01d52734d7d23adadb77c45ddca2dabe Mon Sep 17 00:00:00 2001 From: Karim Dibo Date: Tue, 21 Nov 2023 14:44:59 +0100 Subject: [PATCH 2/3] Fix license --- docs/guide/guide.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/guide.gradle b/docs/guide/guide.gradle index d44db4b..c5536de 100644 --- a/docs/guide/guide.gradle +++ b/docs/guide/guide.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From 59ccdd3e0257254372c928f0d37eaf0c4563990f Mon Sep 17 00:00:00 2001 From: Karim Dibo Date: Tue, 21 Nov 2023 18:31:26 +0100 Subject: [PATCH 3/3] Fix license --- build.gradle | 2 +- buildSrc/build.gradle | 2 +- buildSrc/src/main/groovy/micronaut-compatibility.gradle | 2 +- gradle.properties | 2 +- libs/micronaut-newrelic-http/micronaut-newrelic-http.gradle | 2 +- .../com/agorapulse/micronaut/newrelic/http/NewRelicFilter.java | 2 +- .../com/agorapulse/micronaut/newrelic/http/NewRelicUtil.java | 2 +- .../micronaut/newrelic/http/NewRelicFilterSpec.groovy | 2 +- .../agorapulse/micronaut/newrelic/http/TestController.groovy | 2 +- libs/micronaut-newrelic/micronaut-newrelic.gradle | 2 +- .../micronaut/newrelic/AsyncNewRelicInsightsService.java | 2 +- .../newrelic/BeanIntrospectionEventPayloadExtractor.java | 2 +- .../micronaut/newrelic/DefaultNewRelicInsightsEvent.java | 2 +- .../micronaut/newrelic/DefaultNewRelicInsightsService.java | 2 +- .../agorapulse/micronaut/newrelic/EventPayloadExtractor.java | 2 +- .../micronaut/newrelic/FallbackNewRelicInsightsService.java | 2 +- .../micronaut/newrelic/NewRelicAgentPresentCondition.java | 2 +- .../agorapulse/micronaut/newrelic/NewRelicConfiguration.java | 2 +- .../java/com/agorapulse/micronaut/newrelic/NewRelicFactory.java | 2 +- .../com/agorapulse/micronaut/newrelic/NewRelicInsights.java | 2 +- .../agorapulse/micronaut/newrelic/NewRelicInsightsClient.java | 2 +- .../micronaut/newrelic/NewRelicInsightsClientFilter.java | 2 +- .../agorapulse/micronaut/newrelic/NewRelicInsightsEvent.java | 2 +- .../micronaut/newrelic/NewRelicInsightsGrailsConfiguration.java | 2 +- .../agorapulse/micronaut/newrelic/NewRelicInsightsService.java | 2 +- .../micronaut/newrelic/NewRelicInsightsServiceClient.java | 2 +- .../micronaut/newrelic/NewRelicInsightsUrlClient.java | 2 +- .../com/agorapulse/micronaut/newrelic/FallbackSpec.groovy | 2 +- .../agorapulse/micronaut/newrelic/SpringIntegrationSpec.groovy | 2 +- settings.gradle | 2 +- test-projects/nonr/nonr.gradle | 2 +- test-projects/nonr/src/main/resources/log4j2.xml | 2 +- .../nonr/src/test/groovy/nonr/NoNewRelicLibSpec.groovy | 2 +- test-projects/nr/nr.gradle | 2 +- test-projects/nr/src/main/resources/log4j2.xml | 2 +- test-projects/nr/src/test/groovy/nr/NewRelicLibSpec.groovy | 2 +- test-projects/nr/src/test/groovy/nr/NewRelicNoopSpec.groovy | 2 +- test-projects/nrhttp/nrhttp.gradle | 2 +- test-projects/nrhttp/src/main/resources/log4j2.xml | 2 +- .../src/test/groovy/nrhttp/NewRelicHttpOverrideSpec.groovy | 2 +- .../src/test/groovy/nrhttp/NewRelicServiceOverrideSpec.groovy | 2 +- 41 files changed, 41 insertions(+), 41 deletions(-) diff --git a/build.gradle b/build.gradle index a2b2dac..ae62b4b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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 7b9b231..3616f34 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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 b761071..e0c433a 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-2022 Agorapulse. + * Copyright 2022-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 e28b273..94e35c5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -# Copyright 2022-2022 Agorapulse. +# Copyright 2022-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-newrelic-http/micronaut-newrelic-http.gradle b/libs/micronaut-newrelic-http/micronaut-newrelic-http.gradle index 20c4317..20f33e0 100644 --- a/libs/micronaut-newrelic-http/micronaut-newrelic-http.gradle +++ b/libs/micronaut-newrelic-http/micronaut-newrelic-http.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic-http/src/main/java/com/agorapulse/micronaut/newrelic/http/NewRelicFilter.java b/libs/micronaut-newrelic-http/src/main/java/com/agorapulse/micronaut/newrelic/http/NewRelicFilter.java index d5a6e3d..f3d3bf0 100644 --- a/libs/micronaut-newrelic-http/src/main/java/com/agorapulse/micronaut/newrelic/http/NewRelicFilter.java +++ b/libs/micronaut-newrelic-http/src/main/java/com/agorapulse/micronaut/newrelic/http/NewRelicFilter.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic-http/src/main/java/com/agorapulse/micronaut/newrelic/http/NewRelicUtil.java b/libs/micronaut-newrelic-http/src/main/java/com/agorapulse/micronaut/newrelic/http/NewRelicUtil.java index 2fb9ebc..2f38fcf 100644 --- a/libs/micronaut-newrelic-http/src/main/java/com/agorapulse/micronaut/newrelic/http/NewRelicUtil.java +++ b/libs/micronaut-newrelic-http/src/main/java/com/agorapulse/micronaut/newrelic/http/NewRelicUtil.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic-http/src/test/groovy/com/agorapulse/micronaut/newrelic/http/NewRelicFilterSpec.groovy b/libs/micronaut-newrelic-http/src/test/groovy/com/agorapulse/micronaut/newrelic/http/NewRelicFilterSpec.groovy index 847ff52..e043f5c 100644 --- a/libs/micronaut-newrelic-http/src/test/groovy/com/agorapulse/micronaut/newrelic/http/NewRelicFilterSpec.groovy +++ b/libs/micronaut-newrelic-http/src/test/groovy/com/agorapulse/micronaut/newrelic/http/NewRelicFilterSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic-http/src/test/groovy/com/agorapulse/micronaut/newrelic/http/TestController.groovy b/libs/micronaut-newrelic-http/src/test/groovy/com/agorapulse/micronaut/newrelic/http/TestController.groovy index ba29009..01f1069 100644 --- a/libs/micronaut-newrelic-http/src/test/groovy/com/agorapulse/micronaut/newrelic/http/TestController.groovy +++ b/libs/micronaut-newrelic-http/src/test/groovy/com/agorapulse/micronaut/newrelic/http/TestController.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/micronaut-newrelic.gradle b/libs/micronaut-newrelic/micronaut-newrelic.gradle index d2c454c..337bf39 100644 --- a/libs/micronaut-newrelic/micronaut-newrelic.gradle +++ b/libs/micronaut-newrelic/micronaut-newrelic.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/AsyncNewRelicInsightsService.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/AsyncNewRelicInsightsService.java index fd9d325..2bcc987 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/AsyncNewRelicInsightsService.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/AsyncNewRelicInsightsService.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/BeanIntrospectionEventPayloadExtractor.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/BeanIntrospectionEventPayloadExtractor.java index ce6932d..85cdac2 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/BeanIntrospectionEventPayloadExtractor.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/BeanIntrospectionEventPayloadExtractor.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/DefaultNewRelicInsightsEvent.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/DefaultNewRelicInsightsEvent.java index 84d5555..16682a9 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/DefaultNewRelicInsightsEvent.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/DefaultNewRelicInsightsEvent.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/DefaultNewRelicInsightsService.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/DefaultNewRelicInsightsService.java index 9663b8e..28580f0 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/DefaultNewRelicInsightsService.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/DefaultNewRelicInsightsService.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/EventPayloadExtractor.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/EventPayloadExtractor.java index 55e5460..93a9a89 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/EventPayloadExtractor.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/EventPayloadExtractor.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/FallbackNewRelicInsightsService.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/FallbackNewRelicInsightsService.java index 24081af..75f04b8 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/FallbackNewRelicInsightsService.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/FallbackNewRelicInsightsService.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicAgentPresentCondition.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicAgentPresentCondition.java index 8569975..e295c13 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicAgentPresentCondition.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicAgentPresentCondition.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicConfiguration.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicConfiguration.java index f570940..20bef5e 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicConfiguration.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicConfiguration.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicFactory.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicFactory.java index 47c1381..70878cd 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicFactory.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicFactory.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsights.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsights.java index 7e05c0d..513a2b7 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsights.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsights.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsClient.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsClient.java index 8c8efb8..171119d 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsClient.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsClient.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsClientFilter.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsClientFilter.java index 6c4c217..c63fbda 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsClientFilter.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsClientFilter.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsEvent.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsEvent.java index 2fd738d..26b5048 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsEvent.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsEvent.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsGrailsConfiguration.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsGrailsConfiguration.java index 62af2f6..ebe4c6f 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsGrailsConfiguration.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsGrailsConfiguration.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsService.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsService.java index 222d768..8ddcaa9 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsService.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsService.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsServiceClient.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsServiceClient.java index c742a26..4f31bbd 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsServiceClient.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsServiceClient.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsUrlClient.java b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsUrlClient.java index 2dbe729..729dfc0 100644 --- a/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsUrlClient.java +++ b/libs/micronaut-newrelic/src/main/java/com/agorapulse/micronaut/newrelic/NewRelicInsightsUrlClient.java @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/test/groovy/com/agorapulse/micronaut/newrelic/FallbackSpec.groovy b/libs/micronaut-newrelic/src/test/groovy/com/agorapulse/micronaut/newrelic/FallbackSpec.groovy index 75abb82..47536eb 100644 --- a/libs/micronaut-newrelic/src/test/groovy/com/agorapulse/micronaut/newrelic/FallbackSpec.groovy +++ b/libs/micronaut-newrelic/src/test/groovy/com/agorapulse/micronaut/newrelic/FallbackSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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-newrelic/src/test/groovy/com/agorapulse/micronaut/newrelic/SpringIntegrationSpec.groovy b/libs/micronaut-newrelic/src/test/groovy/com/agorapulse/micronaut/newrelic/SpringIntegrationSpec.groovy index 1a62df7..852158c 100644 --- a/libs/micronaut-newrelic/src/test/groovy/com/agorapulse/micronaut/newrelic/SpringIntegrationSpec.groovy +++ b/libs/micronaut-newrelic/src/test/groovy/com/agorapulse/micronaut/newrelic/SpringIntegrationSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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 5a8d02e..8d2ba7b 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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/test-projects/nonr/nonr.gradle b/test-projects/nonr/nonr.gradle index edbef82..53bf1e6 100644 --- a/test-projects/nonr/nonr.gradle +++ b/test-projects/nonr/nonr.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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/test-projects/nonr/src/main/resources/log4j2.xml b/test-projects/nonr/src/main/resources/log4j2.xml index 07fbe1a..81ced3c 100644 --- a/test-projects/nonr/src/main/resources/log4j2.xml +++ b/test-projects/nonr/src/main/resources/log4j2.xml @@ -3,7 +3,7 @@ SPDX-License-Identifier: Apache-2.0 - Copyright 2022-2022 Agorapulse. + Copyright 2022-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/test-projects/nonr/src/test/groovy/nonr/NoNewRelicLibSpec.groovy b/test-projects/nonr/src/test/groovy/nonr/NoNewRelicLibSpec.groovy index 4c74f1a..13c4063 100644 --- a/test-projects/nonr/src/test/groovy/nonr/NoNewRelicLibSpec.groovy +++ b/test-projects/nonr/src/test/groovy/nonr/NoNewRelicLibSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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/test-projects/nr/nr.gradle b/test-projects/nr/nr.gradle index e85d3aa..8d2e539 100644 --- a/test-projects/nr/nr.gradle +++ b/test-projects/nr/nr.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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/test-projects/nr/src/main/resources/log4j2.xml b/test-projects/nr/src/main/resources/log4j2.xml index 07fbe1a..81ced3c 100644 --- a/test-projects/nr/src/main/resources/log4j2.xml +++ b/test-projects/nr/src/main/resources/log4j2.xml @@ -3,7 +3,7 @@ SPDX-License-Identifier: Apache-2.0 - Copyright 2022-2022 Agorapulse. + Copyright 2022-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/test-projects/nr/src/test/groovy/nr/NewRelicLibSpec.groovy b/test-projects/nr/src/test/groovy/nr/NewRelicLibSpec.groovy index b5449ae..156ae0c 100644 --- a/test-projects/nr/src/test/groovy/nr/NewRelicLibSpec.groovy +++ b/test-projects/nr/src/test/groovy/nr/NewRelicLibSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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/test-projects/nr/src/test/groovy/nr/NewRelicNoopSpec.groovy b/test-projects/nr/src/test/groovy/nr/NewRelicNoopSpec.groovy index 0c16430..ecf870d 100644 --- a/test-projects/nr/src/test/groovy/nr/NewRelicNoopSpec.groovy +++ b/test-projects/nr/src/test/groovy/nr/NewRelicNoopSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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/test-projects/nrhttp/nrhttp.gradle b/test-projects/nrhttp/nrhttp.gradle index 8578dc3..23df7e5 100644 --- a/test-projects/nrhttp/nrhttp.gradle +++ b/test-projects/nrhttp/nrhttp.gradle @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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/test-projects/nrhttp/src/main/resources/log4j2.xml b/test-projects/nrhttp/src/main/resources/log4j2.xml index 07fbe1a..81ced3c 100644 --- a/test-projects/nrhttp/src/main/resources/log4j2.xml +++ b/test-projects/nrhttp/src/main/resources/log4j2.xml @@ -3,7 +3,7 @@ SPDX-License-Identifier: Apache-2.0 - Copyright 2022-2022 Agorapulse. + Copyright 2022-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/test-projects/nrhttp/src/test/groovy/nrhttp/NewRelicHttpOverrideSpec.groovy b/test-projects/nrhttp/src/test/groovy/nrhttp/NewRelicHttpOverrideSpec.groovy index 30acc89..38aa93c 100644 --- a/test-projects/nrhttp/src/test/groovy/nrhttp/NewRelicHttpOverrideSpec.groovy +++ b/test-projects/nrhttp/src/test/groovy/nrhttp/NewRelicHttpOverrideSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-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/test-projects/nrhttp/src/test/groovy/nrhttp/NewRelicServiceOverrideSpec.groovy b/test-projects/nrhttp/src/test/groovy/nrhttp/NewRelicServiceOverrideSpec.groovy index 8b6662d..2c271b2 100644 --- a/test-projects/nrhttp/src/test/groovy/nrhttp/NewRelicServiceOverrideSpec.groovy +++ b/test-projects/nrhttp/src/test/groovy/nrhttp/NewRelicServiceOverrideSpec.groovy @@ -1,7 +1,7 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright 2022-2022 Agorapulse. + * Copyright 2022-2023 Agorapulse. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.