From 453c7a39703ae7753b34cfd52b951aad8c7c8499 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C4=B1rat=20K=C3=9C=C3=87=C3=9CK?= Date: Wed, 27 Dec 2023 09:06:25 +0100 Subject: [PATCH] Snapshot Release 24.1.0-SNAPSHOT --- README.md | 4 ++-- lilo-spring/README.md | 4 ++-- lilo-spring/pom.xml | 4 ++-- .../main/java/io/fria/lilo/spring/ClientSessionWrapper.java | 2 +- lilo-spring/src/main/java/io/fria/lilo/spring/EnableLilo.java | 2 +- .../java/io/fria/lilo/spring/GatewayHandshakeInterceptor.java | 2 +- .../java/io/fria/lilo/spring/GatewayWebSocketHandler.java | 2 +- lilo-spring/src/main/java/io/fria/lilo/spring/LiloConfig.java | 2 +- .../main/java/io/fria/lilo/spring/LiloConfigProperties.java | 2 +- .../src/main/java/io/fria/lilo/spring/LiloHandlerMapping.java | 2 +- .../main/java/io/fria/lilo/spring/SourceWebSocketHandler.java | 2 +- .../io/fria/lilo/spring/SubscriptionWebSocketConfigurer.java | 2 +- lilo/pom.xml | 2 +- .../java/io/fria/lilo/AbstractDefaultRemoteRetriever.java | 2 +- .../main/java/io/fria/lilo/AsyncIntrospectionRetriever.java | 2 +- lilo/src/main/java/io/fria/lilo/AsyncQueryRetriever.java | 2 +- .../io/fria/lilo/DefaultRemoteIntrospectionRetriever.java | 2 +- .../main/java/io/fria/lilo/DefaultRemoteQueryRetriever.java | 2 +- lilo/src/main/java/io/fria/lilo/DefinedSchemaSource.java | 2 +- lilo/src/main/java/io/fria/lilo/DummyCoercing.java | 2 +- lilo/src/main/java/io/fria/lilo/GraphQLQuery.java | 2 +- lilo/src/main/java/io/fria/lilo/GraphQLRequest.java | 2 +- lilo/src/main/java/io/fria/lilo/GraphQLResult.java | 2 +- .../src/main/java/io/fria/lilo/IntrospectionFetchingMode.java | 2 +- lilo/src/main/java/io/fria/lilo/IntrospectionRetriever.java | 2 +- lilo/src/main/java/io/fria/lilo/JsonUtils.java | 2 +- lilo/src/main/java/io/fria/lilo/Lilo.java | 2 +- lilo/src/main/java/io/fria/lilo/LiloContext.java | 2 +- lilo/src/main/java/io/fria/lilo/QueryRetriever.java | 2 +- lilo/src/main/java/io/fria/lilo/QueryTransformer.java | 2 +- lilo/src/main/java/io/fria/lilo/RemoteSchemaSource.java | 2 +- lilo/src/main/java/io/fria/lilo/SchemaMerger.java | 2 +- lilo/src/main/java/io/fria/lilo/SchemaSource.java | 2 +- .../main/java/io/fria/lilo/SyncIntrospectionRetriever.java | 2 +- lilo/src/main/java/io/fria/lilo/SyncQueryRetriever.java | 2 +- .../src/main/java/io/fria/lilo/error/ErrorSourceLocation.java | 2 +- lilo/src/main/java/io/fria/lilo/error/GraphQLResultError.java | 2 +- .../lilo/error/LiloDefaultDataFetcherExceptionHandler.java | 2 +- lilo/src/main/java/io/fria/lilo/error/LiloException.java | 2 +- .../java/io/fria/lilo/error/LiloInvalidConfigException.java | 2 +- .../io/fria/lilo/error/LiloSourceDataFetcherException.java | 2 +- .../io/fria/lilo/subscription/SubscriptionGatewayHandler.java | 2 +- .../java/io/fria/lilo/subscription/SubscriptionMessage.java | 2 +- .../io/fria/lilo/subscription/SubscriptionMessageType.java | 2 +- .../java/io/fria/lilo/subscription/SubscriptionRetriever.java | 2 +- .../io/fria/lilo/subscription/SubscriptionSourceHandler.java | 2 +- .../fria/lilo/subscription/SubscriptionSourcePublisher.java | 2 +- .../io/fria/lilo/subscription/WebSocketSessionWrapper.java | 2 +- lilo/src/test/java/io/fria/lilo/JsonUtilsTest.java | 2 +- lilo/src/test/java/io/fria/lilo/TestUtils.java | 2 +- lilo/src/test/java/io/fria/lilo/async/AsyncTest.java | 2 +- lilo/src/test/java/io/fria/lilo/complex/ComplexQueryTest.java | 2 +- lilo/src/test/java/io/fria/lilo/crud/CrudTest.java | 2 +- .../src/test/java/io/fria/lilo/defined/DefinedSchemaTest.java | 2 +- .../defined_subscription/DefinedSubscriptionSchemaTest.java | 2 +- .../java/io/fria/lilo/dynamic_loading/ReloadSchemaTest.java | 2 +- lilo/src/test/java/io/fria/lilo/error/ErrorTest.java | 2 +- .../io/fria/lilo/fetching_options/FetchingOptionsTest.java | 2 +- lilo/src/test/java/io/fria/lilo/greetings/GreetingsTest.java | 2 +- .../java/io/fria/lilo/local_context/LocalContextTest.java | 2 +- lilo/src/test/java/io/fria/lilo/math/MathTest.java | 2 +- lilo/src/test/resources/complex/combined.graphqls | 2 +- lilo/src/test/resources/complex/project1.graphqls | 2 +- lilo/src/test/resources/complex/project2.graphqls | 2 +- lilo/src/test/resources/complex/query.graphql | 2 +- lilo/src/test/resources/crud/combined.graphqls | 2 +- lilo/src/test/resources/crud/fragmented-query.graphql | 2 +- lilo/src/test/resources/crud/mutation.graphql | 2 +- lilo/src/test/resources/crud/project1.graphqls | 2 +- lilo/src/test/resources/crud/project2.graphqls | 2 +- lilo/src/test/resources/crud/query.graphql | 2 +- lilo/src/test/resources/defined/combined.graphqls | 2 +- lilo/src/test/resources/defined/greeting1.graphqls | 2 +- lilo/src/test/resources/defined/greeting2.graphqls | 2 +- .../src/test/resources/defined_subscription/combined.graphqls | 2 +- .../test/resources/defined_subscription/greeting1.graphqls | 2 +- .../test/resources/defined_subscription/greeting2.graphqls | 2 +- lilo/src/test/resources/dynamic_loading/greeting3.graphqls | 2 +- lilo/src/test/resources/greetings/combined.graphqls | 2 +- lilo/src/test/resources/greetings/greeting1.graphqls | 2 +- lilo/src/test/resources/greetings/greeting2.graphqls | 2 +- lilo/src/test/resources/math/add.graphqls | 2 +- lilo/src/test/resources/math/combined.graphqls | 2 +- lilo/src/test/resources/math/query.graphql | 2 +- lilo/src/test/resources/math/subtract.graphqls | 2 +- pom.xml | 2 +- samples/lilo-spring/01-subscription/lilo-gateway/pom.xml | 2 +- .../samples/subscription/lilo_gateway/LiloConfiguration.java | 2 +- .../samples/subscription/lilo_gateway/LiloController.java | 2 +- .../subscription/lilo_gateway/LiloGatewayApplication.java | 2 +- .../subscription/lilo_gateway/SubscriptionRetrieverImpl.java | 2 +- .../lilo_gateway/LiloGatewayApplicationTests.java | 2 +- samples/lilo-spring/01-subscription/server1/pom.xml | 2 +- .../spring/samples/subscription/server1/DataRepository.java | 2 +- .../samples/subscription/server1/GreetingController.java | 2 +- .../samples/subscription/server1/Server1Application.java | 2 +- .../server1/src/main/resources/application.properties | 2 +- .../server1/src/main/resources/graphql/schema.graphqls | 2 +- .../samples/subscription/server1/Server1ApplicationTests.java | 2 +- samples/lilo-spring/01-subscription/server2/pom.xml | 2 +- .../spring/samples/subscription/server2/DataRepository.java | 2 +- .../samples/subscription/server2/GreetingController.java | 2 +- .../samples/subscription/server2/Server2Application.java | 2 +- .../server2/src/main/resources/application.properties | 2 +- .../server2/src/main/resources/graphql/schema.graphqls | 2 +- .../samples/subscription/server2/Server2ApplicationTests.java | 2 +- samples/lilo/01-spring-boot-hello-world/lilo-gateway/pom.xml | 2 +- .../spring_boot_hello_world/lilo_gateway/LiloController.java | 2 +- .../lilo_gateway/LiloGatewayApplication.java | 2 +- .../lilo_gateway/LiloGatewayApplicationTests.java | 2 +- samples/lilo/01-spring-boot-hello-world/server1/pom.xml | 2 +- .../spring_boot_hello_world/server1/GreetingController.java | 2 +- .../spring_boot_hello_world/server1/Server1Application.java | 2 +- .../server1/src/main/resources/application.properties | 2 +- .../server1/src/main/resources/graphql/schema.graphqls | 2 +- .../server1/Server1ApplicationTests.java | 2 +- samples/lilo/01-spring-boot-hello-world/server2/pom.xml | 2 +- .../spring_boot_hello_world/server2/GreetingController.java | 2 +- .../spring_boot_hello_world/server2/Server2Application.java | 2 +- .../server2/src/main/resources/application.properties | 2 +- .../server2/src/main/resources/graphql/schema.graphqls | 2 +- .../server2/Server2ApplicationTests.java | 2 +- .../lilo/02-spring-boot-basic-stitching/lilo-gateway/pom.xml | 2 +- .../lilo_gateway/IntrospectionRetrieverImpl.java | 2 +- .../lilo_gateway/LiloController.java | 2 +- .../lilo_gateway/LiloGatewayApplication.java | 2 +- .../lilo_gateway/QueryRetrieverImpl.java | 2 +- .../lilo_gateway/LiloGatewayApplicationTests.java | 2 +- samples/lilo/02-spring-boot-basic-stitching/server1/pom.xml | 2 +- .../server1/GreetingController.java | 2 +- .../server1/Server1Application.java | 2 +- .../server1/src/main/resources/application.properties | 2 +- .../server1/src/main/resources/graphql/schema.graphqls | 2 +- .../server1/Server1ApplicationTests.java | 2 +- samples/lilo/02-spring-boot-basic-stitching/server2/pom.xml | 2 +- .../server2/GreetingController.java | 2 +- .../server2/Server2Application.java | 2 +- .../server2/src/main/resources/application.properties | 2 +- .../server2/src/main/resources/graphql/schema.graphqls | 2 +- .../server2/Server2ApplicationTests.java | 2 +- .../lilo/03-spring-boot-local-stitching/lilo-gateway/pom.xml | 2 +- .../lilo_gateway/IntrospectionRetrieverImpl.java | 2 +- .../lilo_gateway/LiloController.java | 2 +- .../lilo_gateway/LiloGatewayApplication.java | 2 +- .../lilo_gateway/QueryRetrieverImpl.java | 2 +- .../lilo-gateway/src/main/resources/graphql/source2.graphqls | 2 +- .../lilo_gateway/LiloGatewayApplicationTests.java | 2 +- samples/lilo/03-spring-boot-local-stitching/server1/pom.xml | 2 +- .../server1/GreetingController.java | 2 +- .../server1/Server1Application.java | 2 +- .../server1/src/main/resources/application.properties | 2 +- .../server1/src/main/resources/graphql/schema.graphqls | 2 +- .../server1/Server1ApplicationTests.java | 2 +- .../04-spring-boot-reactive-stitching/lilo-gateway/pom.xml | 2 +- .../lilo_gateway/IntrospectionRetrieverImpl.java | 2 +- .../lilo_gateway/LiloController.java | 2 +- .../lilo_gateway/LiloGatewayApplication.java | 2 +- .../lilo_gateway/QueryRetrieverImpl.java | 2 +- .../lilo_gateway/LiloGatewayApplicationTests.java | 2 +- .../lilo/04-spring-boot-reactive-stitching/server1/pom.xml | 2 +- .../server1/GreetingController.java | 2 +- .../server1/Server1Application.java | 2 +- .../server1/src/main/resources/application.properties | 2 +- .../server1/src/main/resources/graphql/schema.graphqls | 2 +- .../server1/Server1ApplicationTests.java | 2 +- .../lilo/04-spring-boot-reactive-stitching/server2/pom.xml | 2 +- .../server2/GreetingController.java | 2 +- .../server2/Server2Application.java | 2 +- .../server2/src/main/resources/application.properties | 2 +- .../server2/src/main/resources/graphql/schema.graphqls | 2 +- .../server2/Server2ApplicationTests.java | 2 +- .../05-spring-boot-basic-authentication/lilo-gateway/pom.xml | 2 +- .../lilo_gateway/IntrospectionRetrieverImpl.java | 2 +- .../lilo_gateway/LiloController.java | 2 +- .../lilo_gateway/LiloGatewayApplication.java | 2 +- .../lilo_gateway/QueryRetrieverImpl.java | 2 +- .../lilo_gateway/LiloGatewayApplicationTests.java | 2 +- .../lilo/05-spring-boot-basic-authentication/server1/pom.xml | 2 +- .../server1/GreetingController.java | 2 +- .../server1/Server1Application.java | 2 +- .../server1/src/main/resources/application.properties | 2 +- .../server1/src/main/resources/graphql/schema.graphqls | 2 +- .../server1/Server1ApplicationTests.java | 2 +- .../lilo/05-spring-boot-basic-authentication/server2/pom.xml | 2 +- .../server2/GreetingController.java | 2 +- .../server2/Server2Application.java | 2 +- .../server2/src/main/resources/application.properties | 2 +- .../server2/src/main/resources/graphql/schema.graphqls | 2 +- .../server2/Server2ApplicationTests.java | 2 +- samples/lilo/06-spring-boot-subscription/lilo-gateway/pom.xml | 2 +- .../spring_boot_subscription/lilo_gateway/LiloController.java | 2 +- .../lilo_gateway/LiloGatewayApplication.java | 2 +- .../lilo_gateway/config/LiloConfiguration.java | 2 +- .../lilo_gateway/config/WebSocketConfig.java | 2 +- .../lilo_gateway/handlers/ClientSessionWrapper.java | 2 +- .../lilo_gateway/handlers/GatewayWebSocketHandler.java | 2 +- .../lilo_gateway/handlers/LiloHandlerMapping.java | 2 +- .../lilo_gateway/handlers/SourceWebSocketHandler.java | 2 +- .../lilo_gateway/retrievers/IntrospectionRetrieverImpl.java | 2 +- .../lilo_gateway/retrievers/QueryRetrieverImpl.java | 2 +- .../lilo_gateway/retrievers/SubscriptionRetrieverImpl.java | 2 +- .../lilo_gateway/LiloGatewayApplicationTests.java | 2 +- samples/lilo/06-spring-boot-subscription/server1/pom.xml | 2 +- .../spring_boot_subscription/server1/DataRepository.java | 2 +- .../spring_boot_subscription/server1/GreetingController.java | 2 +- .../spring_boot_subscription/server1/Server1Application.java | 2 +- .../server1/src/main/resources/application.properties | 2 +- .../server1/src/main/resources/graphql/schema.graphqls | 2 +- .../server1/Server1ApplicationTests.java | 2 +- samples/lilo/06-spring-boot-subscription/server2/pom.xml | 2 +- .../spring_boot_subscription/server2/DataRepository.java | 2 +- .../spring_boot_subscription/server2/GreetingController.java | 2 +- .../spring_boot_subscription/server2/Server2Application.java | 2 +- .../server2/src/main/resources/application.properties | 2 +- .../server2/src/main/resources/graphql/schema.graphqls | 2 +- .../server2/Server2ApplicationTests.java | 2 +- 216 files changed, 219 insertions(+), 219 deletions(-) diff --git a/README.md b/README.md index 26e2d8e..8f34b10 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Just add a single **Lilo** dependency to your `pom.xml` file. io.fria lilo - 23.12.0 + 23.12.1 ... @@ -27,7 +27,7 @@ Just add a single **Lilo** dependency to your `pom.xml` file. If you're using gradle add the dependency to your `build.gradle` file. ```groovy -implementation 'io.fria:lilo:23.12.0' +implementation 'io.fria:lilo:23.12.1' ``` ## Basic Usage diff --git a/lilo-spring/README.md b/lilo-spring/README.md index 403258e..fcabcc8 100644 --- a/lilo-spring/README.md +++ b/lilo-spring/README.md @@ -14,7 +14,7 @@ Just add a single **Lilo** dependency to your `pom.xml` file. io.fria lilo-spring - 23.12.0 + 23.12.1 ... @@ -23,7 +23,7 @@ Just add a single **Lilo** dependency to your `pom.xml` file. If you're using gradle add the dependency to your `build.gradle` file. ```groovy -implementation 'io.fria:lilo-spring:23.12.0' +implementation 'io.fria:lilo-spring:23.12.1' ``` ## Usage diff --git a/lilo-spring/pom.xml b/lilo-spring/pom.xml index e3165aa..3c26ae7 100644 --- a/lilo-spring/pom.xml +++ b/lilo-spring/pom.xml @@ -6,7 +6,7 @@ io.fria lilo-spring - 23.12.1 + 24.1.0-SNAPSHOT lilo-spring Lilo GraphQL stitching library Spring Bindings @@ -45,7 +45,7 @@ - 23.12.1 + 24.1.0-SNAPSHOT 6.1.2 3.2.1 6.0.0 diff --git a/lilo-spring/src/main/java/io/fria/lilo/spring/ClientSessionWrapper.java b/lilo-spring/src/main/java/io/fria/lilo/spring/ClientSessionWrapper.java index 8cc98eb..19f1c1c 100644 --- a/lilo-spring/src/main/java/io/fria/lilo/spring/ClientSessionWrapper.java +++ b/lilo-spring/src/main/java/io/fria/lilo/spring/ClientSessionWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo-spring/src/main/java/io/fria/lilo/spring/EnableLilo.java b/lilo-spring/src/main/java/io/fria/lilo/spring/EnableLilo.java index 9fee075..5f6dbda 100644 --- a/lilo-spring/src/main/java/io/fria/lilo/spring/EnableLilo.java +++ b/lilo-spring/src/main/java/io/fria/lilo/spring/EnableLilo.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo-spring/src/main/java/io/fria/lilo/spring/GatewayHandshakeInterceptor.java b/lilo-spring/src/main/java/io/fria/lilo/spring/GatewayHandshakeInterceptor.java index 518c774..d2ad7e1 100644 --- a/lilo-spring/src/main/java/io/fria/lilo/spring/GatewayHandshakeInterceptor.java +++ b/lilo-spring/src/main/java/io/fria/lilo/spring/GatewayHandshakeInterceptor.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo-spring/src/main/java/io/fria/lilo/spring/GatewayWebSocketHandler.java b/lilo-spring/src/main/java/io/fria/lilo/spring/GatewayWebSocketHandler.java index 757cd56..d0b4de7 100644 --- a/lilo-spring/src/main/java/io/fria/lilo/spring/GatewayWebSocketHandler.java +++ b/lilo-spring/src/main/java/io/fria/lilo/spring/GatewayWebSocketHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo-spring/src/main/java/io/fria/lilo/spring/LiloConfig.java b/lilo-spring/src/main/java/io/fria/lilo/spring/LiloConfig.java index c9405c3..6dbfbce 100644 --- a/lilo-spring/src/main/java/io/fria/lilo/spring/LiloConfig.java +++ b/lilo-spring/src/main/java/io/fria/lilo/spring/LiloConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo-spring/src/main/java/io/fria/lilo/spring/LiloConfigProperties.java b/lilo-spring/src/main/java/io/fria/lilo/spring/LiloConfigProperties.java index 405ae57..426e0cf 100644 --- a/lilo-spring/src/main/java/io/fria/lilo/spring/LiloConfigProperties.java +++ b/lilo-spring/src/main/java/io/fria/lilo/spring/LiloConfigProperties.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo-spring/src/main/java/io/fria/lilo/spring/LiloHandlerMapping.java b/lilo-spring/src/main/java/io/fria/lilo/spring/LiloHandlerMapping.java index 68b75d4..50057a9 100644 --- a/lilo-spring/src/main/java/io/fria/lilo/spring/LiloHandlerMapping.java +++ b/lilo-spring/src/main/java/io/fria/lilo/spring/LiloHandlerMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo-spring/src/main/java/io/fria/lilo/spring/SourceWebSocketHandler.java b/lilo-spring/src/main/java/io/fria/lilo/spring/SourceWebSocketHandler.java index 3b63e40..558d65b 100644 --- a/lilo-spring/src/main/java/io/fria/lilo/spring/SourceWebSocketHandler.java +++ b/lilo-spring/src/main/java/io/fria/lilo/spring/SourceWebSocketHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo-spring/src/main/java/io/fria/lilo/spring/SubscriptionWebSocketConfigurer.java b/lilo-spring/src/main/java/io/fria/lilo/spring/SubscriptionWebSocketConfigurer.java index 52331ed..f1b5a57 100644 --- a/lilo-spring/src/main/java/io/fria/lilo/spring/SubscriptionWebSocketConfigurer.java +++ b/lilo-spring/src/main/java/io/fria/lilo/spring/SubscriptionWebSocketConfigurer.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/pom.xml b/lilo/pom.xml index 830aa94..462ec15 100644 --- a/lilo/pom.xml +++ b/lilo/pom.xml @@ -6,7 +6,7 @@ io.fria lilo - 23.12.1 + 24.1.0-SNAPSHOT lilo Lilo GraphQL stitching library diff --git a/lilo/src/main/java/io/fria/lilo/AbstractDefaultRemoteRetriever.java b/lilo/src/main/java/io/fria/lilo/AbstractDefaultRemoteRetriever.java index 30732e1..5101224 100644 --- a/lilo/src/main/java/io/fria/lilo/AbstractDefaultRemoteRetriever.java +++ b/lilo/src/main/java/io/fria/lilo/AbstractDefaultRemoteRetriever.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/AsyncIntrospectionRetriever.java b/lilo/src/main/java/io/fria/lilo/AsyncIntrospectionRetriever.java index 2c2bab6..ef24892 100644 --- a/lilo/src/main/java/io/fria/lilo/AsyncIntrospectionRetriever.java +++ b/lilo/src/main/java/io/fria/lilo/AsyncIntrospectionRetriever.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/AsyncQueryRetriever.java b/lilo/src/main/java/io/fria/lilo/AsyncQueryRetriever.java index e266387..bac355d 100644 --- a/lilo/src/main/java/io/fria/lilo/AsyncQueryRetriever.java +++ b/lilo/src/main/java/io/fria/lilo/AsyncQueryRetriever.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/DefaultRemoteIntrospectionRetriever.java b/lilo/src/main/java/io/fria/lilo/DefaultRemoteIntrospectionRetriever.java index a7b251d..9b01e2c 100644 --- a/lilo/src/main/java/io/fria/lilo/DefaultRemoteIntrospectionRetriever.java +++ b/lilo/src/main/java/io/fria/lilo/DefaultRemoteIntrospectionRetriever.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/DefaultRemoteQueryRetriever.java b/lilo/src/main/java/io/fria/lilo/DefaultRemoteQueryRetriever.java index 3d078e8..36b65f0 100644 --- a/lilo/src/main/java/io/fria/lilo/DefaultRemoteQueryRetriever.java +++ b/lilo/src/main/java/io/fria/lilo/DefaultRemoteQueryRetriever.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/DefinedSchemaSource.java b/lilo/src/main/java/io/fria/lilo/DefinedSchemaSource.java index 471ab91..bd913dd 100644 --- a/lilo/src/main/java/io/fria/lilo/DefinedSchemaSource.java +++ b/lilo/src/main/java/io/fria/lilo/DefinedSchemaSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/DummyCoercing.java b/lilo/src/main/java/io/fria/lilo/DummyCoercing.java index 884bb26..f77ae65 100644 --- a/lilo/src/main/java/io/fria/lilo/DummyCoercing.java +++ b/lilo/src/main/java/io/fria/lilo/DummyCoercing.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/GraphQLQuery.java b/lilo/src/main/java/io/fria/lilo/GraphQLQuery.java index 7713a4b..84f2bcd 100644 --- a/lilo/src/main/java/io/fria/lilo/GraphQLQuery.java +++ b/lilo/src/main/java/io/fria/lilo/GraphQLQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/GraphQLRequest.java b/lilo/src/main/java/io/fria/lilo/GraphQLRequest.java index 1903947..f934db9 100644 --- a/lilo/src/main/java/io/fria/lilo/GraphQLRequest.java +++ b/lilo/src/main/java/io/fria/lilo/GraphQLRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/GraphQLResult.java b/lilo/src/main/java/io/fria/lilo/GraphQLResult.java index a68b66a..203f727 100644 --- a/lilo/src/main/java/io/fria/lilo/GraphQLResult.java +++ b/lilo/src/main/java/io/fria/lilo/GraphQLResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/IntrospectionFetchingMode.java b/lilo/src/main/java/io/fria/lilo/IntrospectionFetchingMode.java index b545374..64d399c 100644 --- a/lilo/src/main/java/io/fria/lilo/IntrospectionFetchingMode.java +++ b/lilo/src/main/java/io/fria/lilo/IntrospectionFetchingMode.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/IntrospectionRetriever.java b/lilo/src/main/java/io/fria/lilo/IntrospectionRetriever.java index 35ff152..9e8acf7 100644 --- a/lilo/src/main/java/io/fria/lilo/IntrospectionRetriever.java +++ b/lilo/src/main/java/io/fria/lilo/IntrospectionRetriever.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/JsonUtils.java b/lilo/src/main/java/io/fria/lilo/JsonUtils.java index 8d70cdd..cc1bf89 100644 --- a/lilo/src/main/java/io/fria/lilo/JsonUtils.java +++ b/lilo/src/main/java/io/fria/lilo/JsonUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/Lilo.java b/lilo/src/main/java/io/fria/lilo/Lilo.java index f400821..1e938d5 100644 --- a/lilo/src/main/java/io/fria/lilo/Lilo.java +++ b/lilo/src/main/java/io/fria/lilo/Lilo.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/LiloContext.java b/lilo/src/main/java/io/fria/lilo/LiloContext.java index bc90b22..ff231dd 100644 --- a/lilo/src/main/java/io/fria/lilo/LiloContext.java +++ b/lilo/src/main/java/io/fria/lilo/LiloContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/QueryRetriever.java b/lilo/src/main/java/io/fria/lilo/QueryRetriever.java index 05c5f00..d20c7b7 100644 --- a/lilo/src/main/java/io/fria/lilo/QueryRetriever.java +++ b/lilo/src/main/java/io/fria/lilo/QueryRetriever.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/QueryTransformer.java b/lilo/src/main/java/io/fria/lilo/QueryTransformer.java index f242c8f..91a9faf 100644 --- a/lilo/src/main/java/io/fria/lilo/QueryTransformer.java +++ b/lilo/src/main/java/io/fria/lilo/QueryTransformer.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/RemoteSchemaSource.java b/lilo/src/main/java/io/fria/lilo/RemoteSchemaSource.java index 706f7e9..7b56926 100644 --- a/lilo/src/main/java/io/fria/lilo/RemoteSchemaSource.java +++ b/lilo/src/main/java/io/fria/lilo/RemoteSchemaSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/SchemaMerger.java b/lilo/src/main/java/io/fria/lilo/SchemaMerger.java index 8c3354c..13c63c4 100644 --- a/lilo/src/main/java/io/fria/lilo/SchemaMerger.java +++ b/lilo/src/main/java/io/fria/lilo/SchemaMerger.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/SchemaSource.java b/lilo/src/main/java/io/fria/lilo/SchemaSource.java index 859a832..92b16e4 100644 --- a/lilo/src/main/java/io/fria/lilo/SchemaSource.java +++ b/lilo/src/main/java/io/fria/lilo/SchemaSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/SyncIntrospectionRetriever.java b/lilo/src/main/java/io/fria/lilo/SyncIntrospectionRetriever.java index de2ef56..46d1017 100644 --- a/lilo/src/main/java/io/fria/lilo/SyncIntrospectionRetriever.java +++ b/lilo/src/main/java/io/fria/lilo/SyncIntrospectionRetriever.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/SyncQueryRetriever.java b/lilo/src/main/java/io/fria/lilo/SyncQueryRetriever.java index 22533e1..00a7d53 100644 --- a/lilo/src/main/java/io/fria/lilo/SyncQueryRetriever.java +++ b/lilo/src/main/java/io/fria/lilo/SyncQueryRetriever.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/error/ErrorSourceLocation.java b/lilo/src/main/java/io/fria/lilo/error/ErrorSourceLocation.java index 78ffeb0..7359f92 100644 --- a/lilo/src/main/java/io/fria/lilo/error/ErrorSourceLocation.java +++ b/lilo/src/main/java/io/fria/lilo/error/ErrorSourceLocation.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/error/GraphQLResultError.java b/lilo/src/main/java/io/fria/lilo/error/GraphQLResultError.java index c59947c..488f329 100644 --- a/lilo/src/main/java/io/fria/lilo/error/GraphQLResultError.java +++ b/lilo/src/main/java/io/fria/lilo/error/GraphQLResultError.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/error/LiloDefaultDataFetcherExceptionHandler.java b/lilo/src/main/java/io/fria/lilo/error/LiloDefaultDataFetcherExceptionHandler.java index f6352de..80854ac 100644 --- a/lilo/src/main/java/io/fria/lilo/error/LiloDefaultDataFetcherExceptionHandler.java +++ b/lilo/src/main/java/io/fria/lilo/error/LiloDefaultDataFetcherExceptionHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/error/LiloException.java b/lilo/src/main/java/io/fria/lilo/error/LiloException.java index 7ccf563..9cd7955 100644 --- a/lilo/src/main/java/io/fria/lilo/error/LiloException.java +++ b/lilo/src/main/java/io/fria/lilo/error/LiloException.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/error/LiloInvalidConfigException.java b/lilo/src/main/java/io/fria/lilo/error/LiloInvalidConfigException.java index 0ed1b52..56d5223 100644 --- a/lilo/src/main/java/io/fria/lilo/error/LiloInvalidConfigException.java +++ b/lilo/src/main/java/io/fria/lilo/error/LiloInvalidConfigException.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/error/LiloSourceDataFetcherException.java b/lilo/src/main/java/io/fria/lilo/error/LiloSourceDataFetcherException.java index 99b7131..1e35052 100644 --- a/lilo/src/main/java/io/fria/lilo/error/LiloSourceDataFetcherException.java +++ b/lilo/src/main/java/io/fria/lilo/error/LiloSourceDataFetcherException.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionGatewayHandler.java b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionGatewayHandler.java index 6490051..61a928f 100644 --- a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionGatewayHandler.java +++ b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionGatewayHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionMessage.java b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionMessage.java index 971021a..9f6865b 100644 --- a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionMessage.java +++ b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionMessageType.java b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionMessageType.java index 50cc466..80f1b0a 100644 --- a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionMessageType.java +++ b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionMessageType.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionRetriever.java b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionRetriever.java index 4bf233f..6fbed81 100644 --- a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionRetriever.java +++ b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionRetriever.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionSourceHandler.java b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionSourceHandler.java index cdd3f76..e7c95a0 100644 --- a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionSourceHandler.java +++ b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionSourceHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionSourcePublisher.java b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionSourcePublisher.java index e0b906b..5b56034 100644 --- a/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionSourcePublisher.java +++ b/lilo/src/main/java/io/fria/lilo/subscription/SubscriptionSourcePublisher.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/main/java/io/fria/lilo/subscription/WebSocketSessionWrapper.java b/lilo/src/main/java/io/fria/lilo/subscription/WebSocketSessionWrapper.java index 01cef95..6da382e 100644 --- a/lilo/src/main/java/io/fria/lilo/subscription/WebSocketSessionWrapper.java +++ b/lilo/src/main/java/io/fria/lilo/subscription/WebSocketSessionWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/JsonUtilsTest.java b/lilo/src/test/java/io/fria/lilo/JsonUtilsTest.java index abf9842..309affa 100644 --- a/lilo/src/test/java/io/fria/lilo/JsonUtilsTest.java +++ b/lilo/src/test/java/io/fria/lilo/JsonUtilsTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/TestUtils.java b/lilo/src/test/java/io/fria/lilo/TestUtils.java index 4b41982..f52e09b 100644 --- a/lilo/src/test/java/io/fria/lilo/TestUtils.java +++ b/lilo/src/test/java/io/fria/lilo/TestUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/async/AsyncTest.java b/lilo/src/test/java/io/fria/lilo/async/AsyncTest.java index e15a72b..cef2fa4 100644 --- a/lilo/src/test/java/io/fria/lilo/async/AsyncTest.java +++ b/lilo/src/test/java/io/fria/lilo/async/AsyncTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/complex/ComplexQueryTest.java b/lilo/src/test/java/io/fria/lilo/complex/ComplexQueryTest.java index 544f9ef..4299eaa 100644 --- a/lilo/src/test/java/io/fria/lilo/complex/ComplexQueryTest.java +++ b/lilo/src/test/java/io/fria/lilo/complex/ComplexQueryTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/crud/CrudTest.java b/lilo/src/test/java/io/fria/lilo/crud/CrudTest.java index ec4b7d9..6bafffc 100644 --- a/lilo/src/test/java/io/fria/lilo/crud/CrudTest.java +++ b/lilo/src/test/java/io/fria/lilo/crud/CrudTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/defined/DefinedSchemaTest.java b/lilo/src/test/java/io/fria/lilo/defined/DefinedSchemaTest.java index 6f3c63b..014e5e8 100644 --- a/lilo/src/test/java/io/fria/lilo/defined/DefinedSchemaTest.java +++ b/lilo/src/test/java/io/fria/lilo/defined/DefinedSchemaTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/defined_subscription/DefinedSubscriptionSchemaTest.java b/lilo/src/test/java/io/fria/lilo/defined_subscription/DefinedSubscriptionSchemaTest.java index 63e6f32..8914910 100644 --- a/lilo/src/test/java/io/fria/lilo/defined_subscription/DefinedSubscriptionSchemaTest.java +++ b/lilo/src/test/java/io/fria/lilo/defined_subscription/DefinedSubscriptionSchemaTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/dynamic_loading/ReloadSchemaTest.java b/lilo/src/test/java/io/fria/lilo/dynamic_loading/ReloadSchemaTest.java index 829cbbf..22cbdef 100644 --- a/lilo/src/test/java/io/fria/lilo/dynamic_loading/ReloadSchemaTest.java +++ b/lilo/src/test/java/io/fria/lilo/dynamic_loading/ReloadSchemaTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/error/ErrorTest.java b/lilo/src/test/java/io/fria/lilo/error/ErrorTest.java index 7866575..fa310ef 100644 --- a/lilo/src/test/java/io/fria/lilo/error/ErrorTest.java +++ b/lilo/src/test/java/io/fria/lilo/error/ErrorTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/fetching_options/FetchingOptionsTest.java b/lilo/src/test/java/io/fria/lilo/fetching_options/FetchingOptionsTest.java index 282a2d3..fa52366 100644 --- a/lilo/src/test/java/io/fria/lilo/fetching_options/FetchingOptionsTest.java +++ b/lilo/src/test/java/io/fria/lilo/fetching_options/FetchingOptionsTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/greetings/GreetingsTest.java b/lilo/src/test/java/io/fria/lilo/greetings/GreetingsTest.java index a2076ee..1fd957b 100644 --- a/lilo/src/test/java/io/fria/lilo/greetings/GreetingsTest.java +++ b/lilo/src/test/java/io/fria/lilo/greetings/GreetingsTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/local_context/LocalContextTest.java b/lilo/src/test/java/io/fria/lilo/local_context/LocalContextTest.java index 02d9910..5888df9 100644 --- a/lilo/src/test/java/io/fria/lilo/local_context/LocalContextTest.java +++ b/lilo/src/test/java/io/fria/lilo/local_context/LocalContextTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/java/io/fria/lilo/math/MathTest.java b/lilo/src/test/java/io/fria/lilo/math/MathTest.java index 2e50e47..0e7094d 100644 --- a/lilo/src/test/java/io/fria/lilo/math/MathTest.java +++ b/lilo/src/test/java/io/fria/lilo/math/MathTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/complex/combined.graphqls b/lilo/src/test/resources/complex/combined.graphqls index d1897b7..5b00391 100644 --- a/lilo/src/test/resources/complex/combined.graphqls +++ b/lilo/src/test/resources/complex/combined.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/complex/project1.graphqls b/lilo/src/test/resources/complex/project1.graphqls index 6cc84b7..e16a72a 100644 --- a/lilo/src/test/resources/complex/project1.graphqls +++ b/lilo/src/test/resources/complex/project1.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/complex/project2.graphqls b/lilo/src/test/resources/complex/project2.graphqls index dae60d4..db43eaa 100644 --- a/lilo/src/test/resources/complex/project2.graphqls +++ b/lilo/src/test/resources/complex/project2.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/complex/query.graphql b/lilo/src/test/resources/complex/query.graphql index c26f045..c6f5bf4 100644 --- a/lilo/src/test/resources/complex/query.graphql +++ b/lilo/src/test/resources/complex/query.graphql @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/crud/combined.graphqls b/lilo/src/test/resources/crud/combined.graphqls index 134d433..8325619 100644 --- a/lilo/src/test/resources/crud/combined.graphqls +++ b/lilo/src/test/resources/crud/combined.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/crud/fragmented-query.graphql b/lilo/src/test/resources/crud/fragmented-query.graphql index dbf0d16..717c45f 100644 --- a/lilo/src/test/resources/crud/fragmented-query.graphql +++ b/lilo/src/test/resources/crud/fragmented-query.graphql @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/crud/mutation.graphql b/lilo/src/test/resources/crud/mutation.graphql index d2a2ef6..e5f7e3c 100644 --- a/lilo/src/test/resources/crud/mutation.graphql +++ b/lilo/src/test/resources/crud/mutation.graphql @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/crud/project1.graphqls b/lilo/src/test/resources/crud/project1.graphqls index 78173a7..b274959 100644 --- a/lilo/src/test/resources/crud/project1.graphqls +++ b/lilo/src/test/resources/crud/project1.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/crud/project2.graphqls b/lilo/src/test/resources/crud/project2.graphqls index 74c6cdd..b67ed58 100644 --- a/lilo/src/test/resources/crud/project2.graphqls +++ b/lilo/src/test/resources/crud/project2.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/crud/query.graphql b/lilo/src/test/resources/crud/query.graphql index 05e6f80..b429f82 100644 --- a/lilo/src/test/resources/crud/query.graphql +++ b/lilo/src/test/resources/crud/query.graphql @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/defined/combined.graphqls b/lilo/src/test/resources/defined/combined.graphqls index fd2a05c..04f0172 100644 --- a/lilo/src/test/resources/defined/combined.graphqls +++ b/lilo/src/test/resources/defined/combined.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/defined/greeting1.graphqls b/lilo/src/test/resources/defined/greeting1.graphqls index 9fab0da..2d1a333 100644 --- a/lilo/src/test/resources/defined/greeting1.graphqls +++ b/lilo/src/test/resources/defined/greeting1.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/defined/greeting2.graphqls b/lilo/src/test/resources/defined/greeting2.graphqls index 7e95f60..b3c575f 100644 --- a/lilo/src/test/resources/defined/greeting2.graphqls +++ b/lilo/src/test/resources/defined/greeting2.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/defined_subscription/combined.graphqls b/lilo/src/test/resources/defined_subscription/combined.graphqls index 6300560..2d83477 100644 --- a/lilo/src/test/resources/defined_subscription/combined.graphqls +++ b/lilo/src/test/resources/defined_subscription/combined.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/defined_subscription/greeting1.graphqls b/lilo/src/test/resources/defined_subscription/greeting1.graphqls index e8243d9..59123c0 100644 --- a/lilo/src/test/resources/defined_subscription/greeting1.graphqls +++ b/lilo/src/test/resources/defined_subscription/greeting1.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/defined_subscription/greeting2.graphqls b/lilo/src/test/resources/defined_subscription/greeting2.graphqls index 8b4148e..917d34b 100644 --- a/lilo/src/test/resources/defined_subscription/greeting2.graphqls +++ b/lilo/src/test/resources/defined_subscription/greeting2.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/dynamic_loading/greeting3.graphqls b/lilo/src/test/resources/dynamic_loading/greeting3.graphqls index 60b5cf4..0835991 100644 --- a/lilo/src/test/resources/dynamic_loading/greeting3.graphqls +++ b/lilo/src/test/resources/dynamic_loading/greeting3.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/greetings/combined.graphqls b/lilo/src/test/resources/greetings/combined.graphqls index ecb845c..81de2f4 100644 --- a/lilo/src/test/resources/greetings/combined.graphqls +++ b/lilo/src/test/resources/greetings/combined.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/greetings/greeting1.graphqls b/lilo/src/test/resources/greetings/greeting1.graphqls index c1fa204..9c7fa09 100644 --- a/lilo/src/test/resources/greetings/greeting1.graphqls +++ b/lilo/src/test/resources/greetings/greeting1.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/greetings/greeting2.graphqls b/lilo/src/test/resources/greetings/greeting2.graphqls index 7d3ab5b..73ea784 100644 --- a/lilo/src/test/resources/greetings/greeting2.graphqls +++ b/lilo/src/test/resources/greetings/greeting2.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/math/add.graphqls b/lilo/src/test/resources/math/add.graphqls index ea66499..503e8a7 100644 --- a/lilo/src/test/resources/math/add.graphqls +++ b/lilo/src/test/resources/math/add.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/math/combined.graphqls b/lilo/src/test/resources/math/combined.graphqls index c19f31b..d1e3180 100644 --- a/lilo/src/test/resources/math/combined.graphqls +++ b/lilo/src/test/resources/math/combined.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/math/query.graphql b/lilo/src/test/resources/math/query.graphql index 7fee4cb..70c7169 100644 --- a/lilo/src/test/resources/math/query.graphql +++ b/lilo/src/test/resources/math/query.graphql @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lilo/src/test/resources/math/subtract.graphqls b/lilo/src/test/resources/math/subtract.graphqls index e2f5792..fcb5fc2 100644 --- a/lilo/src/test/resources/math/subtract.graphqls +++ b/lilo/src/test/resources/math/subtract.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pom.xml b/pom.xml index d8d2efd..3415cf1 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.fria lilo-parent - 23.12.1 + 24.1.0-SNAPSHOT pom lilo-parent diff --git a/samples/lilo-spring/01-subscription/lilo-gateway/pom.xml b/samples/lilo-spring/01-subscription/lilo-gateway/pom.xml index 8e61c52..fca0aa0 100644 --- a/samples/lilo-spring/01-subscription/lilo-gateway/pom.xml +++ b/samples/lilo-spring/01-subscription/lilo-gateway/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloConfiguration.java b/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloConfiguration.java index e0ca963..eb779d9 100644 --- a/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloConfiguration.java +++ b/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloController.java b/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloController.java index 43212ea..2456146 100644 --- a/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloController.java +++ b/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloGatewayApplication.java b/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloGatewayApplication.java index 5f39388..c8f0526 100644 --- a/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloGatewayApplication.java +++ b/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloGatewayApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/SubscriptionRetrieverImpl.java b/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/SubscriptionRetrieverImpl.java index cf83087..67b950f 100644 --- a/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/SubscriptionRetrieverImpl.java +++ b/samples/lilo-spring/01-subscription/lilo-gateway/src/main/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/SubscriptionRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/lilo-gateway/src/test/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloGatewayApplicationTests.java b/samples/lilo-spring/01-subscription/lilo-gateway/src/test/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloGatewayApplicationTests.java index 077f1fd..2f1a88d 100644 --- a/samples/lilo-spring/01-subscription/lilo-gateway/src/test/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloGatewayApplicationTests.java +++ b/samples/lilo-spring/01-subscription/lilo-gateway/src/test/java/io/fria/lilo/spring/samples/subscription/lilo_gateway/LiloGatewayApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server1/pom.xml b/samples/lilo-spring/01-subscription/server1/pom.xml index ed456db..ffec16e 100644 --- a/samples/lilo-spring/01-subscription/server1/pom.xml +++ b/samples/lilo-spring/01-subscription/server1/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/DataRepository.java b/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/DataRepository.java index e23a86d..137ace2 100644 --- a/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/DataRepository.java +++ b/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/DataRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/GreetingController.java b/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/GreetingController.java index e551799..819eaeb 100644 --- a/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/GreetingController.java +++ b/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/Server1Application.java b/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/Server1Application.java index 0b5d198..e496a1d 100644 --- a/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/Server1Application.java +++ b/samples/lilo-spring/01-subscription/server1/src/main/java/io/fria/lilo/spring/samples/subscription/server1/Server1Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server1/src/main/resources/application.properties b/samples/lilo-spring/01-subscription/server1/src/main/resources/application.properties index 28ef01b..9e6b80b 100644 --- a/samples/lilo-spring/01-subscription/server1/src/main/resources/application.properties +++ b/samples/lilo-spring/01-subscription/server1/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server1/src/main/resources/graphql/schema.graphqls b/samples/lilo-spring/01-subscription/server1/src/main/resources/graphql/schema.graphqls index 714c587..9165504 100644 --- a/samples/lilo-spring/01-subscription/server1/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo-spring/01-subscription/server1/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server1/src/test/java/io/fria/lilo/spring/samples/subscription/server1/Server1ApplicationTests.java b/samples/lilo-spring/01-subscription/server1/src/test/java/io/fria/lilo/spring/samples/subscription/server1/Server1ApplicationTests.java index b6a30f1..b3bd343 100644 --- a/samples/lilo-spring/01-subscription/server1/src/test/java/io/fria/lilo/spring/samples/subscription/server1/Server1ApplicationTests.java +++ b/samples/lilo-spring/01-subscription/server1/src/test/java/io/fria/lilo/spring/samples/subscription/server1/Server1ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server2/pom.xml b/samples/lilo-spring/01-subscription/server2/pom.xml index df20df4..9988114 100644 --- a/samples/lilo-spring/01-subscription/server2/pom.xml +++ b/samples/lilo-spring/01-subscription/server2/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/DataRepository.java b/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/DataRepository.java index 5c1497d..ab00dd5 100644 --- a/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/DataRepository.java +++ b/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/DataRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/GreetingController.java b/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/GreetingController.java index 3b86b2a..0f60143 100644 --- a/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/GreetingController.java +++ b/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/Server2Application.java b/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/Server2Application.java index 33e83f9..affbf6d 100644 --- a/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/Server2Application.java +++ b/samples/lilo-spring/01-subscription/server2/src/main/java/io/fria/lilo/spring/samples/subscription/server2/Server2Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server2/src/main/resources/application.properties b/samples/lilo-spring/01-subscription/server2/src/main/resources/application.properties index c63fbc1..d0e95e1 100644 --- a/samples/lilo-spring/01-subscription/server2/src/main/resources/application.properties +++ b/samples/lilo-spring/01-subscription/server2/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server2/src/main/resources/graphql/schema.graphqls b/samples/lilo-spring/01-subscription/server2/src/main/resources/graphql/schema.graphqls index abd7181..a2d71d3 100644 --- a/samples/lilo-spring/01-subscription/server2/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo-spring/01-subscription/server2/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo-spring/01-subscription/server2/src/test/java/io/fria/lilo/spring/samples/subscription/server2/Server2ApplicationTests.java b/samples/lilo-spring/01-subscription/server2/src/test/java/io/fria/lilo/spring/samples/subscription/server2/Server2ApplicationTests.java index ecde4e7..c1a386d 100644 --- a/samples/lilo-spring/01-subscription/server2/src/test/java/io/fria/lilo/spring/samples/subscription/server2/Server2ApplicationTests.java +++ b/samples/lilo-spring/01-subscription/server2/src/test/java/io/fria/lilo/spring/samples/subscription/server2/Server2ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/lilo-gateway/pom.xml b/samples/lilo/01-spring-boot-hello-world/lilo-gateway/pom.xml index ce63269..5d1f635 100644 --- a/samples/lilo/01-spring-boot-hello-world/lilo-gateway/pom.xml +++ b/samples/lilo/01-spring-boot-hello-world/lilo-gateway/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloController.java b/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloController.java index 6a224df..d41c648 100644 --- a/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloController.java +++ b/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloGatewayApplication.java b/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloGatewayApplication.java index 6493351..0f2062e 100644 --- a/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloGatewayApplication.java +++ b/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloGatewayApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloGatewayApplicationTests.java b/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloGatewayApplicationTests.java index b44e53f..e5ee294 100644 --- a/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloGatewayApplicationTests.java +++ b/samples/lilo/01-spring-boot-hello-world/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/lilo_gateway/LiloGatewayApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/server1/pom.xml b/samples/lilo/01-spring-boot-hello-world/server1/pom.xml index ec6d83c..fe9fc30 100644 --- a/samples/lilo/01-spring-boot-hello-world/server1/pom.xml +++ b/samples/lilo/01-spring-boot-hello-world/server1/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/01-spring-boot-hello-world/server1/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server1/GreetingController.java b/samples/lilo/01-spring-boot-hello-world/server1/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server1/GreetingController.java index 40f5a77..63acf1f 100644 --- a/samples/lilo/01-spring-boot-hello-world/server1/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server1/GreetingController.java +++ b/samples/lilo/01-spring-boot-hello-world/server1/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server1/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/server1/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server1/Server1Application.java b/samples/lilo/01-spring-boot-hello-world/server1/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server1/Server1Application.java index ece7a43..a0293bf 100644 --- a/samples/lilo/01-spring-boot-hello-world/server1/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server1/Server1Application.java +++ b/samples/lilo/01-spring-boot-hello-world/server1/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server1/Server1Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/server1/src/main/resources/application.properties b/samples/lilo/01-spring-boot-hello-world/server1/src/main/resources/application.properties index f8dd454..f764f5e 100644 --- a/samples/lilo/01-spring-boot-hello-world/server1/src/main/resources/application.properties +++ b/samples/lilo/01-spring-boot-hello-world/server1/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/server1/src/main/resources/graphql/schema.graphqls b/samples/lilo/01-spring-boot-hello-world/server1/src/main/resources/graphql/schema.graphqls index ecb9779..2437c8e 100644 --- a/samples/lilo/01-spring-boot-hello-world/server1/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo/01-spring-boot-hello-world/server1/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/server1/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/server1/Server1ApplicationTests.java b/samples/lilo/01-spring-boot-hello-world/server1/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/server1/Server1ApplicationTests.java index c13bac1..e419d7e 100644 --- a/samples/lilo/01-spring-boot-hello-world/server1/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/server1/Server1ApplicationTests.java +++ b/samples/lilo/01-spring-boot-hello-world/server1/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/server1/Server1ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/server2/pom.xml b/samples/lilo/01-spring-boot-hello-world/server2/pom.xml index b29312b..fd5c8f5 100644 --- a/samples/lilo/01-spring-boot-hello-world/server2/pom.xml +++ b/samples/lilo/01-spring-boot-hello-world/server2/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/01-spring-boot-hello-world/server2/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server2/GreetingController.java b/samples/lilo/01-spring-boot-hello-world/server2/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server2/GreetingController.java index 4934520..af0c354 100644 --- a/samples/lilo/01-spring-boot-hello-world/server2/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server2/GreetingController.java +++ b/samples/lilo/01-spring-boot-hello-world/server2/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server2/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/server2/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server2/Server2Application.java b/samples/lilo/01-spring-boot-hello-world/server2/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server2/Server2Application.java index 6bed6dc..6b1e94c 100644 --- a/samples/lilo/01-spring-boot-hello-world/server2/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server2/Server2Application.java +++ b/samples/lilo/01-spring-boot-hello-world/server2/src/main/java/io/fria/lilo/samples/spring_boot_hello_world/server2/Server2Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/server2/src/main/resources/application.properties b/samples/lilo/01-spring-boot-hello-world/server2/src/main/resources/application.properties index ba48bd8..3aaec48 100644 --- a/samples/lilo/01-spring-boot-hello-world/server2/src/main/resources/application.properties +++ b/samples/lilo/01-spring-boot-hello-world/server2/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/server2/src/main/resources/graphql/schema.graphqls b/samples/lilo/01-spring-boot-hello-world/server2/src/main/resources/graphql/schema.graphqls index 8f7c0dd..4421b4d 100644 --- a/samples/lilo/01-spring-boot-hello-world/server2/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo/01-spring-boot-hello-world/server2/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/01-spring-boot-hello-world/server2/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/server2/Server2ApplicationTests.java b/samples/lilo/01-spring-boot-hello-world/server2/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/server2/Server2ApplicationTests.java index 22700a5..78a20be 100644 --- a/samples/lilo/01-spring-boot-hello-world/server2/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/server2/Server2ApplicationTests.java +++ b/samples/lilo/01-spring-boot-hello-world/server2/src/test/java/io/fria/lilo/samples/spring_boot_hello_world/server2/Server2ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/pom.xml b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/pom.xml index d14b34c..97a00f0 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/pom.xml +++ b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/IntrospectionRetrieverImpl.java b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/IntrospectionRetrieverImpl.java index f5b017c..69d9f98 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/IntrospectionRetrieverImpl.java +++ b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/IntrospectionRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloController.java b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloController.java index 1c99e01..639733b 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloController.java +++ b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloGatewayApplication.java b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloGatewayApplication.java index c791eb9..9211f10 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloGatewayApplication.java +++ b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloGatewayApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/QueryRetrieverImpl.java b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/QueryRetrieverImpl.java index d707a9a..cc6af40 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/QueryRetrieverImpl.java +++ b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/QueryRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloGatewayApplicationTests.java b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloGatewayApplicationTests.java index 6559e26..01d9c17 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloGatewayApplicationTests.java +++ b/samples/lilo/02-spring-boot-basic-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/lilo_gateway/LiloGatewayApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/server1/pom.xml b/samples/lilo/02-spring-boot-basic-stitching/server1/pom.xml index 62c50fe..efb01fa 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server1/pom.xml +++ b/samples/lilo/02-spring-boot-basic-stitching/server1/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/GreetingController.java b/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/GreetingController.java index aa9ec11..50b1c41 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/GreetingController.java +++ b/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/Server1Application.java b/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/Server1Application.java index d5ffe82..a017244 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/Server1Application.java +++ b/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/Server1Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/resources/application.properties b/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/resources/application.properties index f8dd454..f764f5e 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/resources/application.properties +++ b/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/resources/graphql/schema.graphqls b/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/resources/graphql/schema.graphqls index ecb9779..2437c8e 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo/02-spring-boot-basic-stitching/server1/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/Server1ApplicationTests.java b/samples/lilo/02-spring-boot-basic-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/Server1ApplicationTests.java index a17cc34..5ee5a07 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/Server1ApplicationTests.java +++ b/samples/lilo/02-spring-boot-basic-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/server1/Server1ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/server2/pom.xml b/samples/lilo/02-spring-boot-basic-stitching/server2/pom.xml index 8d055f0..34699f6 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server2/pom.xml +++ b/samples/lilo/02-spring-boot-basic-stitching/server2/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/GreetingController.java b/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/GreetingController.java index 020d45a..a6f3ae5 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/GreetingController.java +++ b/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/Server2Application.java b/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/Server2Application.java index 5049e4c..8ace331 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/Server2Application.java +++ b/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/Server2Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/resources/application.properties b/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/resources/application.properties index ba48bd8..3aaec48 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/resources/application.properties +++ b/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/resources/graphql/schema.graphqls b/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/resources/graphql/schema.graphqls index 8f7c0dd..4421b4d 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo/02-spring-boot-basic-stitching/server2/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/02-spring-boot-basic-stitching/server2/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/Server2ApplicationTests.java b/samples/lilo/02-spring-boot-basic-stitching/server2/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/Server2ApplicationTests.java index e937089..0d1cd55 100644 --- a/samples/lilo/02-spring-boot-basic-stitching/server2/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/Server2ApplicationTests.java +++ b/samples/lilo/02-spring-boot-basic-stitching/server2/src/test/java/io/fria/lilo/samples/spring_boot_basic_stitching/server2/Server2ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/pom.xml b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/pom.xml index 80d0896..13d1a2e 100644 --- a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/pom.xml +++ b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/IntrospectionRetrieverImpl.java b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/IntrospectionRetrieverImpl.java index 68f25b1..857fec6 100644 --- a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/IntrospectionRetrieverImpl.java +++ b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/IntrospectionRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloController.java b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloController.java index 6518a8a..5ad14ef 100644 --- a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloController.java +++ b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloGatewayApplication.java b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloGatewayApplication.java index 8675b65..5b6b953 100644 --- a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloGatewayApplication.java +++ b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloGatewayApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/QueryRetrieverImpl.java b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/QueryRetrieverImpl.java index b5cec0d..e114698 100644 --- a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/QueryRetrieverImpl.java +++ b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/QueryRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/resources/graphql/source2.graphqls b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/resources/graphql/source2.graphqls index 8f7c0dd..4421b4d 100644 --- a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/resources/graphql/source2.graphqls +++ b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/main/resources/graphql/source2.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloGatewayApplicationTests.java b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloGatewayApplicationTests.java index 0eb326d..3249ac8 100644 --- a/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloGatewayApplicationTests.java +++ b/samples/lilo/03-spring-boot-local-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_local_stitching/lilo_gateway/LiloGatewayApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/03-spring-boot-local-stitching/server1/pom.xml b/samples/lilo/03-spring-boot-local-stitching/server1/pom.xml index aa1c966..ed0eac3 100644 --- a/samples/lilo/03-spring-boot-local-stitching/server1/pom.xml +++ b/samples/lilo/03-spring-boot-local-stitching/server1/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/03-spring-boot-local-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/GreetingController.java b/samples/lilo/03-spring-boot-local-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/GreetingController.java index 2551381..6185a21 100644 --- a/samples/lilo/03-spring-boot-local-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/GreetingController.java +++ b/samples/lilo/03-spring-boot-local-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/03-spring-boot-local-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/Server1Application.java b/samples/lilo/03-spring-boot-local-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/Server1Application.java index fb0ecfa..780d050 100644 --- a/samples/lilo/03-spring-boot-local-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/Server1Application.java +++ b/samples/lilo/03-spring-boot-local-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/Server1Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/03-spring-boot-local-stitching/server1/src/main/resources/application.properties b/samples/lilo/03-spring-boot-local-stitching/server1/src/main/resources/application.properties index f8dd454..f764f5e 100644 --- a/samples/lilo/03-spring-boot-local-stitching/server1/src/main/resources/application.properties +++ b/samples/lilo/03-spring-boot-local-stitching/server1/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/03-spring-boot-local-stitching/server1/src/main/resources/graphql/schema.graphqls b/samples/lilo/03-spring-boot-local-stitching/server1/src/main/resources/graphql/schema.graphqls index ecb9779..2437c8e 100644 --- a/samples/lilo/03-spring-boot-local-stitching/server1/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo/03-spring-boot-local-stitching/server1/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/03-spring-boot-local-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/Server1ApplicationTests.java b/samples/lilo/03-spring-boot-local-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/Server1ApplicationTests.java index 0222ecf..40815a4 100644 --- a/samples/lilo/03-spring-boot-local-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/Server1ApplicationTests.java +++ b/samples/lilo/03-spring-boot-local-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_local_stitching/server1/Server1ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/pom.xml b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/pom.xml index 35300f1..1c6cc23 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/pom.xml +++ b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/IntrospectionRetrieverImpl.java b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/IntrospectionRetrieverImpl.java index cceb0a8..d5ea6cb 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/IntrospectionRetrieverImpl.java +++ b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/IntrospectionRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloController.java b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloController.java index dc2b31e..cf2cf32 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloController.java +++ b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloGatewayApplication.java b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloGatewayApplication.java index d797caa..49f39a3 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloGatewayApplication.java +++ b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloGatewayApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/QueryRetrieverImpl.java b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/QueryRetrieverImpl.java index 2561e3b..2d2d373 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/QueryRetrieverImpl.java +++ b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/QueryRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloGatewayApplicationTests.java b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloGatewayApplicationTests.java index 62b66df..e7a0cd2 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloGatewayApplicationTests.java +++ b/samples/lilo/04-spring-boot-reactive-stitching/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/lilo_gateway/LiloGatewayApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server1/pom.xml b/samples/lilo/04-spring-boot-reactive-stitching/server1/pom.xml index cbde160..831c718 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server1/pom.xml +++ b/samples/lilo/04-spring-boot-reactive-stitching/server1/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/GreetingController.java b/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/GreetingController.java index def107a..4c11bf7 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/GreetingController.java +++ b/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/Server1Application.java b/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/Server1Application.java index 9fe63fa..e08e186 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/Server1Application.java +++ b/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/Server1Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/resources/application.properties b/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/resources/application.properties index f8dd454..f764f5e 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/resources/application.properties +++ b/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/resources/graphql/schema.graphqls b/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/resources/graphql/schema.graphqls index ecb9779..2437c8e 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo/04-spring-boot-reactive-stitching/server1/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/Server1ApplicationTests.java b/samples/lilo/04-spring-boot-reactive-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/Server1ApplicationTests.java index a864c68..133df81 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/Server1ApplicationTests.java +++ b/samples/lilo/04-spring-boot-reactive-stitching/server1/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server1/Server1ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server2/pom.xml b/samples/lilo/04-spring-boot-reactive-stitching/server2/pom.xml index e6f6a7e..92a4498 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server2/pom.xml +++ b/samples/lilo/04-spring-boot-reactive-stitching/server2/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/GreetingController.java b/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/GreetingController.java index b2f1075..b7727b5 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/GreetingController.java +++ b/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/Server2Application.java b/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/Server2Application.java index 1022ecf..4f8c7c8 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/Server2Application.java +++ b/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/Server2Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/resources/application.properties b/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/resources/application.properties index ba48bd8..3aaec48 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/resources/application.properties +++ b/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/resources/graphql/schema.graphqls b/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/resources/graphql/schema.graphqls index 8f7c0dd..4421b4d 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo/04-spring-boot-reactive-stitching/server2/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/04-spring-boot-reactive-stitching/server2/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/Server2ApplicationTests.java b/samples/lilo/04-spring-boot-reactive-stitching/server2/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/Server2ApplicationTests.java index b83ce3e..0db449f 100644 --- a/samples/lilo/04-spring-boot-reactive-stitching/server2/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/Server2ApplicationTests.java +++ b/samples/lilo/04-spring-boot-reactive-stitching/server2/src/test/java/io/fria/lilo/samples/spring_boot_reactive_stitching/server2/Server2ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/pom.xml b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/pom.xml index 8a39931..52aec4b 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/pom.xml +++ b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/IntrospectionRetrieverImpl.java b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/IntrospectionRetrieverImpl.java index 5ed6aef..364932a 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/IntrospectionRetrieverImpl.java +++ b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/IntrospectionRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloController.java b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloController.java index 6a0fdad..446de95 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloController.java +++ b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloGatewayApplication.java b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloGatewayApplication.java index 0dfaf43..7d56a3a 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloGatewayApplication.java +++ b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloGatewayApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/QueryRetrieverImpl.java b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/QueryRetrieverImpl.java index f1f6f5f..cc341ce 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/QueryRetrieverImpl.java +++ b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/QueryRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloGatewayApplicationTests.java b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloGatewayApplicationTests.java index 738d99f..4484213 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloGatewayApplicationTests.java +++ b/samples/lilo/05-spring-boot-basic-authentication/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/lilo_gateway/LiloGatewayApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/server1/pom.xml b/samples/lilo/05-spring-boot-basic-authentication/server1/pom.xml index 1ef6739..4b8fd0c 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server1/pom.xml +++ b/samples/lilo/05-spring-boot-basic-authentication/server1/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/GreetingController.java b/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/GreetingController.java index d1650f9..900ad26 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/GreetingController.java +++ b/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/Server1Application.java b/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/Server1Application.java index 320a3d6..99b1246 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/Server1Application.java +++ b/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/Server1Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/resources/application.properties b/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/resources/application.properties index f8dd454..f764f5e 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/resources/application.properties +++ b/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/resources/graphql/schema.graphqls b/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/resources/graphql/schema.graphqls index ecb9779..2437c8e 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo/05-spring-boot-basic-authentication/server1/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/server1/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/Server1ApplicationTests.java b/samples/lilo/05-spring-boot-basic-authentication/server1/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/Server1ApplicationTests.java index 7bfa908..1d8bebf 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server1/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/Server1ApplicationTests.java +++ b/samples/lilo/05-spring-boot-basic-authentication/server1/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/server1/Server1ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/server2/pom.xml b/samples/lilo/05-spring-boot-basic-authentication/server2/pom.xml index 8156b68..d739ced 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server2/pom.xml +++ b/samples/lilo/05-spring-boot-basic-authentication/server2/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/GreetingController.java b/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/GreetingController.java index d8274e1..277b11f 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/GreetingController.java +++ b/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/Server2Application.java b/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/Server2Application.java index 20e4905..b0328b1 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/Server2Application.java +++ b/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/Server2Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/resources/application.properties b/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/resources/application.properties index ba48bd8..3aaec48 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/resources/application.properties +++ b/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/resources/graphql/schema.graphqls b/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/resources/graphql/schema.graphqls index 8f7c0dd..4421b4d 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo/05-spring-boot-basic-authentication/server2/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/05-spring-boot-basic-authentication/server2/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/Server2ApplicationTests.java b/samples/lilo/05-spring-boot-basic-authentication/server2/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/Server2ApplicationTests.java index 1d35060..82767eb 100644 --- a/samples/lilo/05-spring-boot-basic-authentication/server2/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/Server2ApplicationTests.java +++ b/samples/lilo/05-spring-boot-basic-authentication/server2/src/test/java/io/fria/lilo/samples/spring_boot_basic_authentication/server2/Server2ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/pom.xml b/samples/lilo/06-spring-boot-subscription/lilo-gateway/pom.xml index e455dc4..708f950 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/pom.xml +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloController.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloController.java index 72330ae..265b07f 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloController.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloGatewayApplication.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloGatewayApplication.java index 77bc77f..3a5228d 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloGatewayApplication.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloGatewayApplication.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/config/LiloConfiguration.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/config/LiloConfiguration.java index 68db756..fe144dd 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/config/LiloConfiguration.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/config/LiloConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/config/WebSocketConfig.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/config/WebSocketConfig.java index 40bf375..5da580c 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/config/WebSocketConfig.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/config/WebSocketConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/ClientSessionWrapper.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/ClientSessionWrapper.java index 23fa98e..c1341b0 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/ClientSessionWrapper.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/ClientSessionWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/GatewayWebSocketHandler.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/GatewayWebSocketHandler.java index afc3431..b953c5e 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/GatewayWebSocketHandler.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/GatewayWebSocketHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/LiloHandlerMapping.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/LiloHandlerMapping.java index ad81b2d..af5cfd5 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/LiloHandlerMapping.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/LiloHandlerMapping.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/SourceWebSocketHandler.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/SourceWebSocketHandler.java index 8db8dcd..43ff557 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/SourceWebSocketHandler.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/handlers/SourceWebSocketHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/IntrospectionRetrieverImpl.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/IntrospectionRetrieverImpl.java index e109015..ebf5fcb 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/IntrospectionRetrieverImpl.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/IntrospectionRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/QueryRetrieverImpl.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/QueryRetrieverImpl.java index fcf36f4..7adf23b 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/QueryRetrieverImpl.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/QueryRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/SubscriptionRetrieverImpl.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/SubscriptionRetrieverImpl.java index 51e5e1d..90834c4 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/SubscriptionRetrieverImpl.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/main/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/retrievers/SubscriptionRetrieverImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloGatewayApplicationTests.java b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloGatewayApplicationTests.java index 609f08c..b6c3725 100644 --- a/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloGatewayApplicationTests.java +++ b/samples/lilo/06-spring-boot-subscription/lilo-gateway/src/test/java/io/fria/lilo/samples/spring_boot_subscription/lilo_gateway/LiloGatewayApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server1/pom.xml b/samples/lilo/06-spring-boot-subscription/server1/pom.xml index b2d5788..e41dbc3 100644 --- a/samples/lilo/06-spring-boot-subscription/server1/pom.xml +++ b/samples/lilo/06-spring-boot-subscription/server1/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/DataRepository.java b/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/DataRepository.java index 815284e..4d9cd15 100644 --- a/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/DataRepository.java +++ b/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/DataRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/GreetingController.java b/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/GreetingController.java index 2f7119e..e64f507 100644 --- a/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/GreetingController.java +++ b/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/Server1Application.java b/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/Server1Application.java index 1c354a9..56ac6ac 100644 --- a/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/Server1Application.java +++ b/samples/lilo/06-spring-boot-subscription/server1/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server1/Server1Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server1/src/main/resources/application.properties b/samples/lilo/06-spring-boot-subscription/server1/src/main/resources/application.properties index 28ef01b..9e6b80b 100644 --- a/samples/lilo/06-spring-boot-subscription/server1/src/main/resources/application.properties +++ b/samples/lilo/06-spring-boot-subscription/server1/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server1/src/main/resources/graphql/schema.graphqls b/samples/lilo/06-spring-boot-subscription/server1/src/main/resources/graphql/schema.graphqls index 714c587..9165504 100644 --- a/samples/lilo/06-spring-boot-subscription/server1/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo/06-spring-boot-subscription/server1/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server1/src/test/java/io/fria/lilo/samples/spring_boot_subscription/server1/Server1ApplicationTests.java b/samples/lilo/06-spring-boot-subscription/server1/src/test/java/io/fria/lilo/samples/spring_boot_subscription/server1/Server1ApplicationTests.java index 536b3f4..b8cadf3 100644 --- a/samples/lilo/06-spring-boot-subscription/server1/src/test/java/io/fria/lilo/samples/spring_boot_subscription/server1/Server1ApplicationTests.java +++ b/samples/lilo/06-spring-boot-subscription/server1/src/test/java/io/fria/lilo/samples/spring_boot_subscription/server1/Server1ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server2/pom.xml b/samples/lilo/06-spring-boot-subscription/server2/pom.xml index 415d2eb..be553a8 100644 --- a/samples/lilo/06-spring-boot-subscription/server2/pom.xml +++ b/samples/lilo/06-spring-boot-subscription/server2/pom.xml @@ -44,7 +44,7 @@ UTF-8 UTF-8 - 23.12.1 + 24.1.0-SNAPSHOT 24.1.0 3.3.1 diff --git a/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/DataRepository.java b/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/DataRepository.java index 1479e3b..3034cb3 100644 --- a/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/DataRepository.java +++ b/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/DataRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/GreetingController.java b/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/GreetingController.java index c1a3191..36c25be 100644 --- a/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/GreetingController.java +++ b/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/GreetingController.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/Server2Application.java b/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/Server2Application.java index 514662d..915a182 100644 --- a/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/Server2Application.java +++ b/samples/lilo/06-spring-boot-subscription/server2/src/main/java/io/fria/lilo/samples/spring_boot_subscription/server2/Server2Application.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server2/src/main/resources/application.properties b/samples/lilo/06-spring-boot-subscription/server2/src/main/resources/application.properties index c63fbc1..d0e95e1 100644 --- a/samples/lilo/06-spring-boot-subscription/server2/src/main/resources/application.properties +++ b/samples/lilo/06-spring-boot-subscription/server2/src/main/resources/application.properties @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server2/src/main/resources/graphql/schema.graphqls b/samples/lilo/06-spring-boot-subscription/server2/src/main/resources/graphql/schema.graphqls index abd7181..a2d71d3 100644 --- a/samples/lilo/06-spring-boot-subscription/server2/src/main/resources/graphql/schema.graphqls +++ b/samples/lilo/06-spring-boot-subscription/server2/src/main/resources/graphql/schema.graphqls @@ -1,4 +1,4 @@ -# Copyright 2023 the original author or authors. +# Copyright 2022-2024 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/samples/lilo/06-spring-boot-subscription/server2/src/test/java/io/fria/lilo/samples/spring_boot_subscription/server2/Server2ApplicationTests.java b/samples/lilo/06-spring-boot-subscription/server2/src/test/java/io/fria/lilo/samples/spring_boot_subscription/server2/Server2ApplicationTests.java index e998eba..578fa30 100644 --- a/samples/lilo/06-spring-boot-subscription/server2/src/test/java/io/fria/lilo/samples/spring_boot_subscription/server2/Server2ApplicationTests.java +++ b/samples/lilo/06-spring-boot-subscription/server2/src/test/java/io/fria/lilo/samples/spring_boot_subscription/server2/Server2ApplicationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2023 the original author or authors. + * Copyright 2022-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.