From 2ccab801894bd879b860713d6f23d0d7640df3e0 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Thu, 21 Mar 2019 15:38:10 -0500 Subject: [PATCH] URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * [ ] http://www.apache.org/licenses/ with 1 occurrences migrated to: https://www.apache.org/licenses/ ([https](https://www.apache.org/licenses/) result 200). * [ ] http://www.apache.org/licenses/LICENSE-2.0 with 125 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). --- LICENSE | 4 ++-- .../java/org/springframework/shell/ValueResultAsserts.java | 2 +- .../src/main/java/org/springframework/shell/Availability.java | 2 +- .../src/main/java/org/springframework/shell/Command.java | 2 +- .../springframework/shell/CommandNotCurrentlyAvailable.java | 2 +- .../main/java/org/springframework/shell/CommandNotFound.java | 2 +- .../main/java/org/springframework/shell/CommandRegistry.java | 2 +- .../java/org/springframework/shell/CompletingParsedLine.java | 2 +- .../java/org/springframework/shell/CompletionContext.java | 2 +- .../java/org/springframework/shell/CompletionProposal.java | 2 +- .../springframework/shell/ConfigurableCommandRegistry.java | 2 +- .../src/main/java/org/springframework/shell/ExitRequest.java | 2 +- .../src/main/java/org/springframework/shell/Input.java | 2 +- .../src/main/java/org/springframework/shell/MethodTarget.java | 2 +- .../java/org/springframework/shell/MethodTargetRegistrar.java | 2 +- .../java/org/springframework/shell/ParameterDescription.java | 2 +- .../shell/ParameterMissingResolutionException.java | 2 +- .../java/org/springframework/shell/ParameterResolver.java | 2 +- .../shell/ParameterResolverMissingException.java | 2 +- .../springframework/shell/ParameterValidationException.java | 2 +- .../main/java/org/springframework/shell/ResultHandler.java | 2 +- .../src/main/java/org/springframework/shell/Shell.java | 2 +- .../springframework/shell/SpringShellAutoConfiguration.java | 2 +- .../shell/UnfinishedParameterResolutionException.java | 2 +- .../src/main/java/org/springframework/shell/Utils.java | 2 +- .../src/main/java/org/springframework/shell/ValueResult.java | 2 +- .../springframework/shell/jline/ExtendedDefaultParser.java | 2 +- .../org/springframework/shell/jline/FileInputProvider.java | 2 +- .../shell/jline/InteractiveShellApplicationRunner.java | 2 +- .../shell/jline/JLineShellAutoConfiguration.java | 2 +- .../java/org/springframework/shell/jline/ParsedLineInput.java | 2 +- .../shell/jline/ScriptShellApplicationRunner.java | 2 +- .../java/org/springframework/shell/jline/package-info.java | 2 +- .../src/main/java/org/springframework/shell/package-info.java | 2 +- .../shell/result/AttributedCharSequenceResultHandler.java | 2 +- .../springframework/shell/result/DefaultResultHandler.java | 2 +- .../springframework/shell/result/IterableResultHandler.java | 2 +- .../result/ParameterValidationExceptionResultHandler.java | 2 +- .../org/springframework/shell/result/ResultHandlerConfig.java | 2 +- .../shell/result/TerminalAwareResultHandler.java | 2 +- .../shell/result/TerminalSizeAwareResultHandler.java | 2 +- .../springframework/shell/result/ThrowableResultHandler.java | 2 +- .../shell/result/TypeHierarchyResultHandler.java | 2 +- .../java/org/springframework/shell/result/package-info.java | 2 +- .../shell/ConfigurableCommandRegistryTest.java | 2 +- .../src/test/java/org/springframework/shell/ShellTest.java | 2 +- .../src/test/java/org/springframework/shell/UtilsTest.java | 2 +- .../shell/jcommander/JCommanderParameterResolver.java | 2 +- .../JCommanderParameterResolverAutoConfiguration.java | 2 +- .../org/springframework/shell/jcommander/package-info.java | 2 +- .../org/springframework/shell/jcommander/FieldCollins.java | 2 +- .../shell/jcommander/JCommanderParameterResolverTest.java | 2 +- .../org/springframework/shell/jcommander/MyLordCommands.java | 2 +- .../shell/samples/ExampleApplicationRunnerConfiguration.java | 2 +- .../org/springframework/shell/samples/SpringShellSample.java | 2 +- .../org/springframework/shell/samples/jcommander/Args.java | 2 +- .../shell/samples/jcommander/JCommanderCommands.java | 2 +- .../springframework/shell/samples/legacy/ArtifactType.java | 2 +- .../springframework/shell/samples/legacy/LegacyCommands.java | 2 +- .../springframework/shell/samples/noautoconf/NoAutoConf.java | 2 +- .../org/springframework/shell/samples/standard/Commands.java | 2 +- .../shell/samples/standard/ConversionExample.java | 2 +- .../shell/samples/standard/DynamicCommands.java | 2 +- .../springframework/shell/samples/standard/TableCommands.java | 2 +- .../org/springframework/shell/standard/commands/Clear.java | 2 +- .../org/springframework/shell/standard/commands/Help.java | 2 +- .../org/springframework/shell/standard/commands/History.java | 2 +- .../org/springframework/shell/standard/commands/Quit.java | 2 +- .../springframework/shell/standard/commands/Stacktrace.java | 2 +- .../standard/commands/StandardCommandsAutoConfiguration.java | 2 +- .../springframework/shell/standard/commands/package-info.java | 2 +- .../org/springframework/shell/standard/commands/HelpTest.java | 2 +- .../commands/StandardCommandsAutoConfigurationTest.java | 2 +- .../springframework/shell/standard/CommandValueProvider.java | 2 +- .../org/springframework/shell/standard/EnumValueProvider.java | 2 +- .../org/springframework/shell/standard/FileValueProvider.java | 2 +- .../org/springframework/shell/standard/ShellCommandGroup.java | 2 +- .../org/springframework/shell/standard/ShellComponent.java | 2 +- .../java/org/springframework/shell/standard/ShellMethod.java | 2 +- .../shell/standard/ShellMethodAvailability.java | 2 +- .../java/org/springframework/shell/standard/ShellOption.java | 2 +- .../shell/standard/StandardAPIAutoConfiguration.java | 2 +- .../shell/standard/StandardMethodTargetRegistrar.java | 2 +- .../shell/standard/StandardParameterResolver.java | 2 +- .../org/springframework/shell/standard/ValueProvider.java | 2 +- .../springframework/shell/standard/ValueProviderSupport.java | 2 +- .../java/org/springframework/shell/standard/package-info.java | 2 +- .../shell/standard/CommandValueProviderTest.java | 2 +- .../test/java/org/springframework/shell/standard/Remote.java | 2 +- .../shell/standard/StandardMethodTargetRegistrarTest.java | 2 +- .../shell/standard/StandardParameterResolverTest.java | 2 +- .../shell/standard/test1/GroupOneCommands.java | 2 +- .../springframework/shell/standard/test1/package-info.java | 2 +- .../shell/standard/test2/GroupThreeCommands.java | 2 +- .../shell/standard/test2/GroupTwoCommands.java | 2 +- .../java/org/springframework/shell/TerminalSizeAware.java | 2 +- .../shell/table/AbsoluteWidthSizeConstraints.java | 2 +- .../main/java/org/springframework/shell/table/Aligner.java | 2 +- .../java/org/springframework/shell/table/ArrayTableModel.java | 2 +- .../org/springframework/shell/table/AutoSizeConstraints.java | 2 +- .../org/springframework/shell/table/BeanListTableModel.java | 2 +- .../org/springframework/shell/table/BorderSpecification.java | 2 +- .../java/org/springframework/shell/table/BorderStyle.java | 2 +- .../java/org/springframework/shell/table/CellMatcher.java | 2 +- .../java/org/springframework/shell/table/CellMatchers.java | 2 +- .../java/org/springframework/shell/table/DebugAligner.java | 2 +- .../org/springframework/shell/table/DebugTextWrapper.java | 2 +- .../org/springframework/shell/table/DefaultFormatter.java | 2 +- .../org/springframework/shell/table/DelimiterTextWrapper.java | 2 +- .../main/java/org/springframework/shell/table/Formatter.java | 2 +- .../shell/table/KeyValueHorizontalAligner.java | 2 +- .../springframework/shell/table/KeyValueSizeConstraints.java | 2 +- .../org/springframework/shell/table/KeyValueTextWrapper.java | 2 +- .../java/org/springframework/shell/table/MapFormatter.java | 2 +- .../springframework/shell/table/NoWrapSizeConstraints.java | 2 +- .../springframework/shell/table/SimpleHorizontalAligner.java | 2 +- .../springframework/shell/table/SimpleVerticalAligner.java | 2 +- .../java/org/springframework/shell/table/SizeConstraints.java | 2 +- .../src/main/java/org/springframework/shell/table/Table.java | 2 +- .../java/org/springframework/shell/table/TableBuilder.java | 2 +- .../main/java/org/springframework/shell/table/TableModel.java | 2 +- .../org/springframework/shell/table/TableModelBuilder.java | 2 +- .../src/main/java/org/springframework/shell/table/Tables.java | 2 +- .../java/org/springframework/shell/table/TextWrapper.java | 2 +- .../java/org/springframework/shell/table/package-info.java | 2 +- 125 files changed, 126 insertions(+), 126 deletions(-) diff --git a/LICENSE b/LICENSE index 8f71f43f..d5dd862b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -192,7 +192,7 @@ you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core-test-support/src/main/java/org/springframework/shell/ValueResultAsserts.java b/spring-shell-core-test-support/src/main/java/org/springframework/shell/ValueResultAsserts.java index 00424931..51da9c93 100644 --- a/spring-shell-core-test-support/src/main/java/org/springframework/shell/ValueResultAsserts.java +++ b/spring-shell-core-test-support/src/main/java/org/springframework/shell/ValueResultAsserts.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/Availability.java b/spring-shell-core/src/main/java/org/springframework/shell/Availability.java index dcd2722d..0175eba6 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/Availability.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/Availability.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/Command.java b/spring-shell-core/src/main/java/org/springframework/shell/Command.java index 3f823315..f571a6f2 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/Command.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/Command.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/CommandNotCurrentlyAvailable.java b/spring-shell-core/src/main/java/org/springframework/shell/CommandNotCurrentlyAvailable.java index 7293df5b..97edb0ce 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/CommandNotCurrentlyAvailable.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/CommandNotCurrentlyAvailable.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/CommandNotFound.java b/spring-shell-core/src/main/java/org/springframework/shell/CommandNotFound.java index c20c6b1e..d114e69c 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/CommandNotFound.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/CommandNotFound.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/CommandRegistry.java b/spring-shell-core/src/main/java/org/springframework/shell/CommandRegistry.java index bb5959c8..68349308 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/CommandRegistry.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/CommandRegistry.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/CompletingParsedLine.java b/spring-shell-core/src/main/java/org/springframework/shell/CompletingParsedLine.java index 5c6f3953..30d5c078 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/CompletingParsedLine.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/CompletingParsedLine.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/CompletionContext.java b/spring-shell-core/src/main/java/org/springframework/shell/CompletionContext.java index 375f6588..0bb33197 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/CompletionContext.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/CompletionContext.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/CompletionProposal.java b/spring-shell-core/src/main/java/org/springframework/shell/CompletionProposal.java index ba0d25cd..44935080 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/CompletionProposal.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/CompletionProposal.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/ConfigurableCommandRegistry.java b/spring-shell-core/src/main/java/org/springframework/shell/ConfigurableCommandRegistry.java index 6ec2677a..43e4f340 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/ConfigurableCommandRegistry.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/ConfigurableCommandRegistry.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/ExitRequest.java b/spring-shell-core/src/main/java/org/springframework/shell/ExitRequest.java index 157dc554..a3db9730 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/ExitRequest.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/ExitRequest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/Input.java b/spring-shell-core/src/main/java/org/springframework/shell/Input.java index c5cf5098..57465920 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/Input.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/Input.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/MethodTarget.java b/spring-shell-core/src/main/java/org/springframework/shell/MethodTarget.java index 3b3be910..b478eb07 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/MethodTarget.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/MethodTarget.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/MethodTargetRegistrar.java b/spring-shell-core/src/main/java/org/springframework/shell/MethodTargetRegistrar.java index 4e04aa7e..169e23f2 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/MethodTargetRegistrar.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/MethodTargetRegistrar.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/ParameterDescription.java b/spring-shell-core/src/main/java/org/springframework/shell/ParameterDescription.java index 402499cf..1c338ae2 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/ParameterDescription.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/ParameterDescription.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/ParameterMissingResolutionException.java b/spring-shell-core/src/main/java/org/springframework/shell/ParameterMissingResolutionException.java index b065b678..c528c672 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/ParameterMissingResolutionException.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/ParameterMissingResolutionException.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/ParameterResolver.java b/spring-shell-core/src/main/java/org/springframework/shell/ParameterResolver.java index 79deb656..5b1b1ef9 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/ParameterResolver.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/ParameterResolver.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/ParameterResolverMissingException.java b/spring-shell-core/src/main/java/org/springframework/shell/ParameterResolverMissingException.java index 431ee7d8..d8bcdae2 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/ParameterResolverMissingException.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/ParameterResolverMissingException.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/ParameterValidationException.java b/spring-shell-core/src/main/java/org/springframework/shell/ParameterValidationException.java index 16994f18..8af2738f 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/ParameterValidationException.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/ParameterValidationException.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/ResultHandler.java b/spring-shell-core/src/main/java/org/springframework/shell/ResultHandler.java index 1561e8c5..e0a5e6be 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/ResultHandler.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/ResultHandler.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/Shell.java b/spring-shell-core/src/main/java/org/springframework/shell/Shell.java index ab9634ff..6cbe59e5 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/Shell.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/Shell.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/SpringShellAutoConfiguration.java b/spring-shell-core/src/main/java/org/springframework/shell/SpringShellAutoConfiguration.java index 1f9bbf5f..c55e9e0d 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/SpringShellAutoConfiguration.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/SpringShellAutoConfiguration.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/UnfinishedParameterResolutionException.java b/spring-shell-core/src/main/java/org/springframework/shell/UnfinishedParameterResolutionException.java index 600e3a8f..381764bc 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/UnfinishedParameterResolutionException.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/UnfinishedParameterResolutionException.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/Utils.java b/spring-shell-core/src/main/java/org/springframework/shell/Utils.java index 25b85d48..338ffc8f 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/Utils.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/Utils.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/ValueResult.java b/spring-shell-core/src/main/java/org/springframework/shell/ValueResult.java index ca3c665b..36c4894d 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/ValueResult.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/ValueResult.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/jline/ExtendedDefaultParser.java b/spring-shell-core/src/main/java/org/springframework/shell/jline/ExtendedDefaultParser.java index 0f55f97f..8788ca36 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/jline/ExtendedDefaultParser.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/jline/ExtendedDefaultParser.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/jline/FileInputProvider.java b/spring-shell-core/src/main/java/org/springframework/shell/jline/FileInputProvider.java index 9575b0a7..d818137e 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/jline/FileInputProvider.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/jline/FileInputProvider.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/jline/InteractiveShellApplicationRunner.java b/spring-shell-core/src/main/java/org/springframework/shell/jline/InteractiveShellApplicationRunner.java index c853b855..d681b021 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/jline/InteractiveShellApplicationRunner.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/jline/InteractiveShellApplicationRunner.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/jline/JLineShellAutoConfiguration.java b/spring-shell-core/src/main/java/org/springframework/shell/jline/JLineShellAutoConfiguration.java index c7653e11..ca29cc90 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/jline/JLineShellAutoConfiguration.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/jline/JLineShellAutoConfiguration.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/jline/ParsedLineInput.java b/spring-shell-core/src/main/java/org/springframework/shell/jline/ParsedLineInput.java index b9c623f3..44b62ac0 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/jline/ParsedLineInput.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/jline/ParsedLineInput.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/jline/ScriptShellApplicationRunner.java b/spring-shell-core/src/main/java/org/springframework/shell/jline/ScriptShellApplicationRunner.java index 88a145db..06d017ca 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/jline/ScriptShellApplicationRunner.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/jline/ScriptShellApplicationRunner.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/jline/package-info.java b/spring-shell-core/src/main/java/org/springframework/shell/jline/package-info.java index 193952b0..743b2e97 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/jline/package-info.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/jline/package-info.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/package-info.java b/spring-shell-core/src/main/java/org/springframework/shell/package-info.java index a268b302..66ef91fc 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/package-info.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/package-info.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/result/AttributedCharSequenceResultHandler.java b/spring-shell-core/src/main/java/org/springframework/shell/result/AttributedCharSequenceResultHandler.java index f1b3ed3a..965b9da9 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/result/AttributedCharSequenceResultHandler.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/result/AttributedCharSequenceResultHandler.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/result/DefaultResultHandler.java b/spring-shell-core/src/main/java/org/springframework/shell/result/DefaultResultHandler.java index a75ee58d..ee9bc66b 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/result/DefaultResultHandler.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/result/DefaultResultHandler.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/result/IterableResultHandler.java b/spring-shell-core/src/main/java/org/springframework/shell/result/IterableResultHandler.java index 598c3e3d..3feac6b4 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/result/IterableResultHandler.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/result/IterableResultHandler.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/result/ParameterValidationExceptionResultHandler.java b/spring-shell-core/src/main/java/org/springframework/shell/result/ParameterValidationExceptionResultHandler.java index 30ba9d34..a25e156b 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/result/ParameterValidationExceptionResultHandler.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/result/ParameterValidationExceptionResultHandler.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/result/ResultHandlerConfig.java b/spring-shell-core/src/main/java/org/springframework/shell/result/ResultHandlerConfig.java index f38dec72..07bc401a 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/result/ResultHandlerConfig.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/result/ResultHandlerConfig.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/result/TerminalAwareResultHandler.java b/spring-shell-core/src/main/java/org/springframework/shell/result/TerminalAwareResultHandler.java index 8a12b4cd..d28189c0 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/result/TerminalAwareResultHandler.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/result/TerminalAwareResultHandler.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/result/TerminalSizeAwareResultHandler.java b/spring-shell-core/src/main/java/org/springframework/shell/result/TerminalSizeAwareResultHandler.java index c5d5cc02..2e19837a 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/result/TerminalSizeAwareResultHandler.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/result/TerminalSizeAwareResultHandler.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/result/ThrowableResultHandler.java b/spring-shell-core/src/main/java/org/springframework/shell/result/ThrowableResultHandler.java index d5e495d0..5662f98f 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/result/ThrowableResultHandler.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/result/ThrowableResultHandler.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/result/TypeHierarchyResultHandler.java b/spring-shell-core/src/main/java/org/springframework/shell/result/TypeHierarchyResultHandler.java index 2dfab68b..c29869da 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/result/TypeHierarchyResultHandler.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/result/TypeHierarchyResultHandler.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/main/java/org/springframework/shell/result/package-info.java b/spring-shell-core/src/main/java/org/springframework/shell/result/package-info.java index 90a73786..414454ce 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/result/package-info.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/result/package-info.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/test/java/org/springframework/shell/ConfigurableCommandRegistryTest.java b/spring-shell-core/src/test/java/org/springframework/shell/ConfigurableCommandRegistryTest.java index b122481f..f38dca02 100644 --- a/spring-shell-core/src/test/java/org/springframework/shell/ConfigurableCommandRegistryTest.java +++ b/spring-shell-core/src/test/java/org/springframework/shell/ConfigurableCommandRegistryTest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/test/java/org/springframework/shell/ShellTest.java b/spring-shell-core/src/test/java/org/springframework/shell/ShellTest.java index e4724123..357e75f4 100644 --- a/spring-shell-core/src/test/java/org/springframework/shell/ShellTest.java +++ b/spring-shell-core/src/test/java/org/springframework/shell/ShellTest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-core/src/test/java/org/springframework/shell/UtilsTest.java b/spring-shell-core/src/test/java/org/springframework/shell/UtilsTest.java index 44cf779f..1d102c7e 100644 --- a/spring-shell-core/src/test/java/org/springframework/shell/UtilsTest.java +++ b/spring-shell-core/src/test/java/org/springframework/shell/UtilsTest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/JCommanderParameterResolver.java b/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/JCommanderParameterResolver.java index 2c30efdf..c70c4dfe 100644 --- a/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/JCommanderParameterResolver.java +++ b/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/JCommanderParameterResolver.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/JCommanderParameterResolverAutoConfiguration.java b/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/JCommanderParameterResolverAutoConfiguration.java index 74580f60..4c9c6a2c 100644 --- a/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/JCommanderParameterResolverAutoConfiguration.java +++ b/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/JCommanderParameterResolverAutoConfiguration.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/package-info.java b/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/package-info.java index c0d4611e..b3e867ad 100644 --- a/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/package-info.java +++ b/spring-shell-jcommander-adapter/src/main/java/org/springframework/shell/jcommander/package-info.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/FieldCollins.java b/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/FieldCollins.java index 868446f1..1313dea3 100644 --- a/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/FieldCollins.java +++ b/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/FieldCollins.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/JCommanderParameterResolverTest.java b/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/JCommanderParameterResolverTest.java index d92322a9..5f915603 100644 --- a/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/JCommanderParameterResolverTest.java +++ b/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/JCommanderParameterResolverTest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/MyLordCommands.java b/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/MyLordCommands.java index 546f7746..4c75d1d4 100644 --- a/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/MyLordCommands.java +++ b/spring-shell-jcommander-adapter/src/test/java/org/springframework/shell/jcommander/MyLordCommands.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-samples/src/main/java/org/springframework/shell/samples/ExampleApplicationRunnerConfiguration.java b/spring-shell-samples/src/main/java/org/springframework/shell/samples/ExampleApplicationRunnerConfiguration.java index 3cdfcafd..0a047f71 100644 --- a/spring-shell-samples/src/main/java/org/springframework/shell/samples/ExampleApplicationRunnerConfiguration.java +++ b/spring-shell-samples/src/main/java/org/springframework/shell/samples/ExampleApplicationRunnerConfiguration.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-samples/src/main/java/org/springframework/shell/samples/SpringShellSample.java b/spring-shell-samples/src/main/java/org/springframework/shell/samples/SpringShellSample.java index 4cea9ce0..0a397d16 100644 --- a/spring-shell-samples/src/main/java/org/springframework/shell/samples/SpringShellSample.java +++ b/spring-shell-samples/src/main/java/org/springframework/shell/samples/SpringShellSample.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-samples/src/main/java/org/springframework/shell/samples/jcommander/Args.java b/spring-shell-samples/src/main/java/org/springframework/shell/samples/jcommander/Args.java index c6163c7d..4338a8a4 100644 --- a/spring-shell-samples/src/main/java/org/springframework/shell/samples/jcommander/Args.java +++ b/spring-shell-samples/src/main/java/org/springframework/shell/samples/jcommander/Args.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-samples/src/main/java/org/springframework/shell/samples/jcommander/JCommanderCommands.java b/spring-shell-samples/src/main/java/org/springframework/shell/samples/jcommander/JCommanderCommands.java index e94d429a..ee5b59c1 100644 --- a/spring-shell-samples/src/main/java/org/springframework/shell/samples/jcommander/JCommanderCommands.java +++ b/spring-shell-samples/src/main/java/org/springframework/shell/samples/jcommander/JCommanderCommands.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-samples/src/main/java/org/springframework/shell/samples/legacy/ArtifactType.java b/spring-shell-samples/src/main/java/org/springframework/shell/samples/legacy/ArtifactType.java index b09ec5a9..f0bfc0bc 100644 --- a/spring-shell-samples/src/main/java/org/springframework/shell/samples/legacy/ArtifactType.java +++ b/spring-shell-samples/src/main/java/org/springframework/shell/samples/legacy/ArtifactType.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-samples/src/main/java/org/springframework/shell/samples/legacy/LegacyCommands.java b/spring-shell-samples/src/main/java/org/springframework/shell/samples/legacy/LegacyCommands.java index 302d071b..fc1efa80 100644 --- a/spring-shell-samples/src/main/java/org/springframework/shell/samples/legacy/LegacyCommands.java +++ b/spring-shell-samples/src/main/java/org/springframework/shell/samples/legacy/LegacyCommands.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-samples/src/main/java/org/springframework/shell/samples/noautoconf/NoAutoConf.java b/spring-shell-samples/src/main/java/org/springframework/shell/samples/noautoconf/NoAutoConf.java index 602526f4..c6d7ac10 100644 --- a/spring-shell-samples/src/main/java/org/springframework/shell/samples/noautoconf/NoAutoConf.java +++ b/spring-shell-samples/src/main/java/org/springframework/shell/samples/noautoconf/NoAutoConf.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/Commands.java b/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/Commands.java index 88ecc111..e4b557d9 100644 --- a/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/Commands.java +++ b/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/Commands.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/ConversionExample.java b/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/ConversionExample.java index 30a1bf5c..51c32c16 100644 --- a/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/ConversionExample.java +++ b/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/ConversionExample.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/DynamicCommands.java b/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/DynamicCommands.java index b53c1a87..b483b9a0 100644 --- a/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/DynamicCommands.java +++ b/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/DynamicCommands.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/TableCommands.java b/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/TableCommands.java index 22b9f426..81b8a497 100644 --- a/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/TableCommands.java +++ b/spring-shell-samples/src/main/java/org/springframework/shell/samples/standard/TableCommands.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Clear.java b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Clear.java index 1421aa36..ac8ad329 100644 --- a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Clear.java +++ b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Clear.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Help.java b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Help.java index 23fd4159..38ceeff1 100644 --- a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Help.java +++ b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Help.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/History.java b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/History.java index 1cc8148a..77d2af4d 100644 --- a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/History.java +++ b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/History.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Quit.java b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Quit.java index 96395f4a..07669c17 100644 --- a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Quit.java +++ b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Quit.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Stacktrace.java b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Stacktrace.java index c64854cf..ea4c6679 100644 --- a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Stacktrace.java +++ b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/Stacktrace.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/StandardCommandsAutoConfiguration.java b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/StandardCommandsAutoConfiguration.java index b086e0e5..539e5b86 100644 --- a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/StandardCommandsAutoConfiguration.java +++ b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/StandardCommandsAutoConfiguration.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/package-info.java b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/package-info.java index 5cf82d87..ebf6944a 100644 --- a/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/package-info.java +++ b/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/package-info.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard-commands/src/test/java/org/springframework/shell/standard/commands/HelpTest.java b/spring-shell-standard-commands/src/test/java/org/springframework/shell/standard/commands/HelpTest.java index 90177cca..b1259594 100644 --- a/spring-shell-standard-commands/src/test/java/org/springframework/shell/standard/commands/HelpTest.java +++ b/spring-shell-standard-commands/src/test/java/org/springframework/shell/standard/commands/HelpTest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard-commands/src/test/java/org/springframework/shell/standard/commands/StandardCommandsAutoConfigurationTest.java b/spring-shell-standard-commands/src/test/java/org/springframework/shell/standard/commands/StandardCommandsAutoConfigurationTest.java index b1ca3025..2815a158 100644 --- a/spring-shell-standard-commands/src/test/java/org/springframework/shell/standard/commands/StandardCommandsAutoConfigurationTest.java +++ b/spring-shell-standard-commands/src/test/java/org/springframework/shell/standard/commands/StandardCommandsAutoConfigurationTest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/CommandValueProvider.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/CommandValueProvider.java index b23915b6..86beec8a 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/CommandValueProvider.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/CommandValueProvider.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/EnumValueProvider.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/EnumValueProvider.java index baa1645f..6d757089 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/EnumValueProvider.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/EnumValueProvider.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/FileValueProvider.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/FileValueProvider.java index 7485e4a7..6842e3e7 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/FileValueProvider.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/FileValueProvider.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellCommandGroup.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellCommandGroup.java index b8c43fc2..8b1e7746 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellCommandGroup.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellCommandGroup.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellComponent.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellComponent.java index 374eaaa5..02c98631 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellComponent.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellComponent.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellMethod.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellMethod.java index 321e0308..e296284b 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellMethod.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellMethod.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellMethodAvailability.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellMethodAvailability.java index 10f93a43..2171e611 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellMethodAvailability.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellMethodAvailability.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellOption.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellOption.java index 5a862199..7d7b138e 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellOption.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ShellOption.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardAPIAutoConfiguration.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardAPIAutoConfiguration.java index 8028a3d5..a72fe355 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardAPIAutoConfiguration.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardAPIAutoConfiguration.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardMethodTargetRegistrar.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardMethodTargetRegistrar.java index 34e837d7..55061007 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardMethodTargetRegistrar.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardMethodTargetRegistrar.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardParameterResolver.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardParameterResolver.java index 75ca3327..3f567b41 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardParameterResolver.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/StandardParameterResolver.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ValueProvider.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ValueProvider.java index 2b19fa58..c648dc8a 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ValueProvider.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ValueProvider.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ValueProviderSupport.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ValueProviderSupport.java index 56117dc9..a4209e87 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/ValueProviderSupport.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/ValueProviderSupport.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/main/java/org/springframework/shell/standard/package-info.java b/spring-shell-standard/src/main/java/org/springframework/shell/standard/package-info.java index 22f8cfeb..1a891cc9 100644 --- a/spring-shell-standard/src/main/java/org/springframework/shell/standard/package-info.java +++ b/spring-shell-standard/src/main/java/org/springframework/shell/standard/package-info.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/test/java/org/springframework/shell/standard/CommandValueProviderTest.java b/spring-shell-standard/src/test/java/org/springframework/shell/standard/CommandValueProviderTest.java index abf64bd2..631b9376 100644 --- a/spring-shell-standard/src/test/java/org/springframework/shell/standard/CommandValueProviderTest.java +++ b/spring-shell-standard/src/test/java/org/springframework/shell/standard/CommandValueProviderTest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/test/java/org/springframework/shell/standard/Remote.java b/spring-shell-standard/src/test/java/org/springframework/shell/standard/Remote.java index b99729cf..ec07bda2 100644 --- a/spring-shell-standard/src/test/java/org/springframework/shell/standard/Remote.java +++ b/spring-shell-standard/src/test/java/org/springframework/shell/standard/Remote.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/test/java/org/springframework/shell/standard/StandardMethodTargetRegistrarTest.java b/spring-shell-standard/src/test/java/org/springframework/shell/standard/StandardMethodTargetRegistrarTest.java index 66bd9f79..f48f0000 100644 --- a/spring-shell-standard/src/test/java/org/springframework/shell/standard/StandardMethodTargetRegistrarTest.java +++ b/spring-shell-standard/src/test/java/org/springframework/shell/standard/StandardMethodTargetRegistrarTest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/test/java/org/springframework/shell/standard/StandardParameterResolverTest.java b/spring-shell-standard/src/test/java/org/springframework/shell/standard/StandardParameterResolverTest.java index d79d525b..e09742e8 100644 --- a/spring-shell-standard/src/test/java/org/springframework/shell/standard/StandardParameterResolverTest.java +++ b/spring-shell-standard/src/test/java/org/springframework/shell/standard/StandardParameterResolverTest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/test/java/org/springframework/shell/standard/test1/GroupOneCommands.java b/spring-shell-standard/src/test/java/org/springframework/shell/standard/test1/GroupOneCommands.java index 4cd22a7b..4aada025 100644 --- a/spring-shell-standard/src/test/java/org/springframework/shell/standard/test1/GroupOneCommands.java +++ b/spring-shell-standard/src/test/java/org/springframework/shell/standard/test1/GroupOneCommands.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/test/java/org/springframework/shell/standard/test1/package-info.java b/spring-shell-standard/src/test/java/org/springframework/shell/standard/test1/package-info.java index e1977186..fc5b9fb7 100644 --- a/spring-shell-standard/src/test/java/org/springframework/shell/standard/test1/package-info.java +++ b/spring-shell-standard/src/test/java/org/springframework/shell/standard/test1/package-info.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/test/java/org/springframework/shell/standard/test2/GroupThreeCommands.java b/spring-shell-standard/src/test/java/org/springframework/shell/standard/test2/GroupThreeCommands.java index 6f39752f..68d634cc 100644 --- a/spring-shell-standard/src/test/java/org/springframework/shell/standard/test2/GroupThreeCommands.java +++ b/spring-shell-standard/src/test/java/org/springframework/shell/standard/test2/GroupThreeCommands.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-standard/src/test/java/org/springframework/shell/standard/test2/GroupTwoCommands.java b/spring-shell-standard/src/test/java/org/springframework/shell/standard/test2/GroupTwoCommands.java index fd5b06ac..009f4c05 100644 --- a/spring-shell-standard/src/test/java/org/springframework/shell/standard/test2/GroupTwoCommands.java +++ b/spring-shell-standard/src/test/java/org/springframework/shell/standard/test2/GroupTwoCommands.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/TerminalSizeAware.java b/spring-shell-table/src/main/java/org/springframework/shell/TerminalSizeAware.java index 00bf20db..7d873552 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/TerminalSizeAware.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/TerminalSizeAware.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/AbsoluteWidthSizeConstraints.java b/spring-shell-table/src/main/java/org/springframework/shell/table/AbsoluteWidthSizeConstraints.java index a32e7721..99ea4700 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/AbsoluteWidthSizeConstraints.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/AbsoluteWidthSizeConstraints.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/Aligner.java b/spring-shell-table/src/main/java/org/springframework/shell/table/Aligner.java index e81bc547..fcb1b432 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/Aligner.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/Aligner.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/ArrayTableModel.java b/spring-shell-table/src/main/java/org/springframework/shell/table/ArrayTableModel.java index 1b7baf81..16ae2e3d 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/ArrayTableModel.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/ArrayTableModel.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/AutoSizeConstraints.java b/spring-shell-table/src/main/java/org/springframework/shell/table/AutoSizeConstraints.java index 7789427f..e48ba5b9 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/AutoSizeConstraints.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/AutoSizeConstraints.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/BeanListTableModel.java b/spring-shell-table/src/main/java/org/springframework/shell/table/BeanListTableModel.java index 958a831e..db1d15d2 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/BeanListTableModel.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/BeanListTableModel.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/BorderSpecification.java b/spring-shell-table/src/main/java/org/springframework/shell/table/BorderSpecification.java index f7227efc..19f8d2fe 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/BorderSpecification.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/BorderSpecification.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/BorderStyle.java b/spring-shell-table/src/main/java/org/springframework/shell/table/BorderStyle.java index b6b69ea7..5e29c36b 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/BorderStyle.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/BorderStyle.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/CellMatcher.java b/spring-shell-table/src/main/java/org/springframework/shell/table/CellMatcher.java index aee78ec3..7f83acf4 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/CellMatcher.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/CellMatcher.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/CellMatchers.java b/spring-shell-table/src/main/java/org/springframework/shell/table/CellMatchers.java index d0228314..0a56303a 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/CellMatchers.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/CellMatchers.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/DebugAligner.java b/spring-shell-table/src/main/java/org/springframework/shell/table/DebugAligner.java index b1a9bd74..703ba3af 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/DebugAligner.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/DebugAligner.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/DebugTextWrapper.java b/spring-shell-table/src/main/java/org/springframework/shell/table/DebugTextWrapper.java index 1e105172..97d8e362 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/DebugTextWrapper.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/DebugTextWrapper.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/DefaultFormatter.java b/spring-shell-table/src/main/java/org/springframework/shell/table/DefaultFormatter.java index c11c711b..5fc3f7c8 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/DefaultFormatter.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/DefaultFormatter.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/DelimiterTextWrapper.java b/spring-shell-table/src/main/java/org/springframework/shell/table/DelimiterTextWrapper.java index b4a3422b..df8747b7 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/DelimiterTextWrapper.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/DelimiterTextWrapper.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/Formatter.java b/spring-shell-table/src/main/java/org/springframework/shell/table/Formatter.java index 36f1573a..f92d06d3 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/Formatter.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/Formatter.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueHorizontalAligner.java b/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueHorizontalAligner.java index 30fde797..48403284 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueHorizontalAligner.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueHorizontalAligner.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueSizeConstraints.java b/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueSizeConstraints.java index 84550f85..2d4a450a 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueSizeConstraints.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueSizeConstraints.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueTextWrapper.java b/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueTextWrapper.java index 18bcf65c..4b10c9b5 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueTextWrapper.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/KeyValueTextWrapper.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/MapFormatter.java b/spring-shell-table/src/main/java/org/springframework/shell/table/MapFormatter.java index 7ea3b3dc..da018fef 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/MapFormatter.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/MapFormatter.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/NoWrapSizeConstraints.java b/spring-shell-table/src/main/java/org/springframework/shell/table/NoWrapSizeConstraints.java index 8e7a0d0b..6545997f 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/NoWrapSizeConstraints.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/NoWrapSizeConstraints.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/SimpleHorizontalAligner.java b/spring-shell-table/src/main/java/org/springframework/shell/table/SimpleHorizontalAligner.java index bdd6749f..adc00f51 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/SimpleHorizontalAligner.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/SimpleHorizontalAligner.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/SimpleVerticalAligner.java b/spring-shell-table/src/main/java/org/springframework/shell/table/SimpleVerticalAligner.java index f3e230c5..630ff500 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/SimpleVerticalAligner.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/SimpleVerticalAligner.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/SizeConstraints.java b/spring-shell-table/src/main/java/org/springframework/shell/table/SizeConstraints.java index cec862c6..87070e95 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/SizeConstraints.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/SizeConstraints.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/Table.java b/spring-shell-table/src/main/java/org/springframework/shell/table/Table.java index 8b7b8402..7e3f09b8 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/Table.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/Table.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/TableBuilder.java b/spring-shell-table/src/main/java/org/springframework/shell/table/TableBuilder.java index 2a3bebda..80560be6 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/TableBuilder.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/TableBuilder.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/TableModel.java b/spring-shell-table/src/main/java/org/springframework/shell/table/TableModel.java index 381c261d..7128a6a8 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/TableModel.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/TableModel.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/TableModelBuilder.java b/spring-shell-table/src/main/java/org/springframework/shell/table/TableModelBuilder.java index 12c76acc..9a7a84a3 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/TableModelBuilder.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/TableModelBuilder.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/Tables.java b/spring-shell-table/src/main/java/org/springframework/shell/table/Tables.java index 52289e08..8d496863 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/Tables.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/Tables.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/TextWrapper.java b/spring-shell-table/src/main/java/org/springframework/shell/table/TextWrapper.java index 5838174d..50111f83 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/TextWrapper.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/TextWrapper.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/spring-shell-table/src/main/java/org/springframework/shell/table/package-info.java b/spring-shell-table/src/main/java/org/springframework/shell/table/package-info.java index d923edf4..f9e3ef71 100644 --- a/spring-shell-table/src/main/java/org/springframework/shell/table/package-info.java +++ b/spring-shell-table/src/main/java/org/springframework/shell/table/package-info.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,