From 8319dcbd8641c2d5617aa1c055cb8c111a7299ad Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Tue, 26 Mar 2019 15:30:35 -0700 Subject: [PATCH] URL Cleanup (#57) 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 8 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 122 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). --- LICENSE | 4 ++-- src/Steeltoe.Cli/AddCommand.cs | 2 +- src/Steeltoe.Cli/ArgsCommand.cs | 2 +- src/Steeltoe.Cli/Command.cs | 2 +- src/Steeltoe.Cli/CommandShell.cs | 2 +- src/Steeltoe.Cli/DeployCommand.cs | 2 +- src/Steeltoe.Cli/DoctorCommand.cs | 2 +- src/Steeltoe.Cli/InitCommand.cs | 2 +- src/Steeltoe.Cli/ListCommand.cs | 2 +- src/Steeltoe.Cli/Program.cs | 2 +- src/Steeltoe.Cli/RemoveCommand.cs | 2 +- src/Steeltoe.Cli/StatusCommand.cs | 2 +- src/Steeltoe.Cli/Steeltoe.Cli.csproj | 2 +- src/Steeltoe.Cli/TargetCommand.cs | 2 +- src/Steeltoe.Cli/UndeployCommand.cs | 2 +- src/Steeltoe.Tooling/AppInfo.cs | 2 +- src/Steeltoe.Tooling/AssemblyInfo.cs | 2 +- src/Steeltoe.Tooling/Cli.cs | 2 +- src/Steeltoe.Tooling/CliException.cs | 2 +- src/Steeltoe.Tooling/CloudFoundry/CloudFoundryCli.cs | 2 +- src/Steeltoe.Tooling/CloudFoundry/CloudFoundryDriver.cs | 2 +- src/Steeltoe.Tooling/CloudFoundry/CloudFoundryManifest.cs | 2 +- src/Steeltoe.Tooling/CloudFoundry/CloudFoundryTarget.cs | 2 +- src/Steeltoe.Tooling/Configuration.cs | 2 +- src/Steeltoe.Tooling/ConfigurationFile.cs | 2 +- src/Steeltoe.Tooling/Context.cs | 2 +- src/Steeltoe.Tooling/Docker/DockerCli.cs | 2 +- src/Steeltoe.Tooling/Docker/DockerDriver.cs | 2 +- src/Steeltoe.Tooling/Docker/DockerTarget.cs | 2 +- src/Steeltoe.Tooling/Dummy/DummyDriver.cs | 2 +- src/Steeltoe.Tooling/Dummy/DummyServiceDatabase.cs | 2 +- src/Steeltoe.Tooling/Dummy/DummyTarget.cs | 2 +- src/Steeltoe.Tooling/Executor/AddExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/AppOrServiceExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/DeployExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/Executor.cs | 2 +- src/Steeltoe.Tooling/Executor/GetArgsExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/GetTargetExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/GroupExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/InitializationExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/ListExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/ListServiceTypesExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/ListTargetsExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/RemoveExecutor.cs | 2 +- .../Executor/RequiresInitializationAttribute.cs | 2 +- src/Steeltoe.Tooling/Executor/RequiresTargetAttribute.cs | 2 +- src/Steeltoe.Tooling/Executor/SetArgsExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/SetTargetExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/StatusExecutor.cs | 2 +- src/Steeltoe.Tooling/Executor/UndeployExecutor.cs | 2 +- src/Steeltoe.Tooling/IConfigurationListener.cs | 2 +- src/Steeltoe.Tooling/IDriver.cs | 2 +- src/Steeltoe.Tooling/ItemDoesNotExistException.cs | 2 +- src/Steeltoe.Tooling/ItemExistsException.cs | 2 +- src/Steeltoe.Tooling/Lifecycle.cs | 2 +- src/Steeltoe.Tooling/LifecycleException.cs | 2 +- src/Steeltoe.Tooling/Logging.cs | 2 +- src/Steeltoe.Tooling/Registry.cs | 2 +- src/Steeltoe.Tooling/ServiceInfo.cs | 2 +- src/Steeltoe.Tooling/ServiceTypeInfo.cs | 2 +- src/Steeltoe.Tooling/Settings.cs | 2 +- src/Steeltoe.Tooling/Shell.cs | 2 +- src/Steeltoe.Tooling/ShellException.cs | 2 +- src/Steeltoe.Tooling/Steeltoe.Tooling.csproj | 2 +- src/Steeltoe.Tooling/Target.cs | 2 +- src/Steeltoe.Tooling/TargetConfiguration.cs | 2 +- src/Steeltoe.Tooling/ToolingException.cs | 2 +- src/Steeltoe.Tooling/steeltoe.rc/registry.yml | 2 +- test/Steeltoe.Cli.Test/AddFeature.cs | 2 +- test/Steeltoe.Cli.Test/ArgsFeature.cs | 2 +- test/Steeltoe.Cli.Test/DeployFeature.cs | 2 +- test/Steeltoe.Cli.Test/DoctorFeature.cs | 2 +- test/Steeltoe.Cli.Test/FeatureSpecs.cs | 2 +- test/Steeltoe.Cli.Test/InitFeature.cs | 2 +- test/Steeltoe.Cli.Test/LightBdd.cs | 2 +- test/Steeltoe.Cli.Test/ListFeature.cs | 2 +- test/Steeltoe.Cli.Test/MockConsole.cs | 2 +- test/Steeltoe.Cli.Test/ProgramFeature.cs | 2 +- test/Steeltoe.Cli.Test/RemoveFeature.cs | 2 +- test/Steeltoe.Cli.Test/StatusFeature.cs | 2 +- test/Steeltoe.Cli.Test/SystemShellFeature.Steps.cs | 2 +- test/Steeltoe.Cli.Test/SystemShellFeature.cs | 2 +- test/Steeltoe.Cli.Test/TargetFeature.cs | 2 +- test/Steeltoe.Cli.Test/UndeployFeature.cs | 2 +- test/Steeltoe.Tooling.Test/CliTest.cs | 2 +- .../CloudFoundry/CloudFoundryDriverTest.cs | 2 +- .../CloudFoundry/CloudFoundryTargetTest.cs | 2 +- test/Steeltoe.Tooling.Test/ConfigurationFileTest.cs | 2 +- test/Steeltoe.Tooling.Test/ConfigurationTest.cs | 2 +- test/Steeltoe.Tooling.Test/ContextTest.cs | 2 +- test/Steeltoe.Tooling.Test/Docker/DockerDriverTest.cs | 2 +- test/Steeltoe.Tooling.Test/Docker/DockerTargetTest.cs | 2 +- test/Steeltoe.Tooling.Test/Dummy/DummyDriverTest.cs | 2 +- test/Steeltoe.Tooling.Test/Dummy/DummyTargetTest.cs | 2 +- test/Steeltoe.Tooling.Test/Executor/AddExecutorTest.cs | 2 +- test/Steeltoe.Tooling.Test/Executor/DeployExecutorTest.cs | 2 +- test/Steeltoe.Tooling.Test/Executor/GetArgsExecutorTest.cs | 2 +- test/Steeltoe.Tooling.Test/Executor/GetTargetExecutorTest.cs | 2 +- .../Executor/InitializationExecutorTest.cs | 2 +- test/Steeltoe.Tooling.Test/Executor/ListExecutorTest.cs | 2 +- .../Executor/ListServiceTypesExecutorTest.cs | 2 +- .../Steeltoe.Tooling.Test/Executor/ListTargetsExecutorTest.cs | 2 +- test/Steeltoe.Tooling.Test/Executor/RemoveExecutorTest.cs | 2 +- test/Steeltoe.Tooling.Test/Executor/SetArgsExecutorTest.cs | 2 +- test/Steeltoe.Tooling.Test/Executor/SetTargetExecutorTest.cs | 2 +- test/Steeltoe.Tooling.Test/Executor/StatusExecutorTest.cs | 2 +- test/Steeltoe.Tooling.Test/Executor/UndeployExecutorTest.cs | 2 +- test/Steeltoe.Tooling.Test/ItemDoesNotExistExceptionTest.cs | 2 +- test/Steeltoe.Tooling.Test/ItemExistsExceptionTest.cs | 2 +- test/Steeltoe.Tooling.Test/LifecycleExceptionTest.cs | 2 +- test/Steeltoe.Tooling.Test/LifecyleTest.cs | 2 +- test/Steeltoe.Tooling.Test/MockShell.cs | 2 +- test/Steeltoe.Tooling.Test/RegistryConfigurationTest.cs | 2 +- test/Steeltoe.Tooling.Test/RegistryTest.cs | 2 +- test/Steeltoe.Tooling.Test/ToolingTest.cs | 2 +- .../App-Templates-VSIX/Resources/LICENSE.txt | 4 ++-- .../Linux-Core-Base-VSIX/Resources/LICENSE.txt | 4 ++-- .../Linux-Core-CloudFoundry-VSIX/Resources/LICENSE.txt | 4 ++-- .../win-core-base/Win-Core-Base-VSIX/Resources/LICENSE.txt | 4 ++-- .../Win-Core-CloudFoundry-VSIX/Resources/LICENSE.txt | 4 ++-- .../Win-Framework-Base-VSIX/Resources/LICENSE.txt | 4 ++-- .../Win-Framework-CloudFoundry-VSIX/Resources/LICENSE.txt | 4 ++-- 122 files changed, 130 insertions(+), 130 deletions(-) diff --git a/LICENSE b/LICENSE index 261eeb9..20e4bd8 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/src/Steeltoe.Cli/AddCommand.cs b/src/Steeltoe.Cli/AddCommand.cs index 2fad633..790302e 100644 --- a/src/Steeltoe.Cli/AddCommand.cs +++ b/src/Steeltoe.Cli/AddCommand.cs @@ -4,7 +4,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/src/Steeltoe.Cli/ArgsCommand.cs b/src/Steeltoe.Cli/ArgsCommand.cs index 6a0129a..a3f2b58 100644 --- a/src/Steeltoe.Cli/ArgsCommand.cs +++ b/src/Steeltoe.Cli/ArgsCommand.cs @@ -4,7 +4,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/src/Steeltoe.Cli/Command.cs b/src/Steeltoe.Cli/Command.cs index 2d32f78..c2ddeb9 100644 --- a/src/Steeltoe.Cli/Command.cs +++ b/src/Steeltoe.Cli/Command.cs @@ -4,7 +4,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/src/Steeltoe.Cli/CommandShell.cs b/src/Steeltoe.Cli/CommandShell.cs index 3d3e805..192d57e 100644 --- a/src/Steeltoe.Cli/CommandShell.cs +++ b/src/Steeltoe.Cli/CommandShell.cs @@ -4,7 +4,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/src/Steeltoe.Cli/DeployCommand.cs b/src/Steeltoe.Cli/DeployCommand.cs index bda5ff0..0c8f18d 100644 --- a/src/Steeltoe.Cli/DeployCommand.cs +++ b/src/Steeltoe.Cli/DeployCommand.cs @@ -4,7 +4,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/src/Steeltoe.Cli/DoctorCommand.cs b/src/Steeltoe.Cli/DoctorCommand.cs index e9bcc92..d658e81 100644 --- a/src/Steeltoe.Cli/DoctorCommand.cs +++ b/src/Steeltoe.Cli/DoctorCommand.cs @@ -4,7 +4,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/src/Steeltoe.Cli/InitCommand.cs b/src/Steeltoe.Cli/InitCommand.cs index c4d9afd..831a28c 100644 --- a/src/Steeltoe.Cli/InitCommand.cs +++ b/src/Steeltoe.Cli/InitCommand.cs @@ -4,7 +4,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/src/Steeltoe.Cli/ListCommand.cs b/src/Steeltoe.Cli/ListCommand.cs index c484730..099ea35 100644 --- a/src/Steeltoe.Cli/ListCommand.cs +++ b/src/Steeltoe.Cli/ListCommand.cs @@ -4,7 +4,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/src/Steeltoe.Cli/Program.cs b/src/Steeltoe.Cli/Program.cs index 4d13cb8..b87ecef 100644 --- a/src/Steeltoe.Cli/Program.cs +++ b/src/Steeltoe.Cli/Program.cs @@ -4,7 +4,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/src/Steeltoe.Cli/RemoveCommand.cs b/src/Steeltoe.Cli/RemoveCommand.cs index c23d2fa..0ef49c4 100644 --- a/src/Steeltoe.Cli/RemoveCommand.cs +++ b/src/Steeltoe.Cli/RemoveCommand.cs @@ -4,7 +4,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/src/Steeltoe.Cli/StatusCommand.cs b/src/Steeltoe.Cli/StatusCommand.cs index c3b9bf9..4f7c447 100644 --- a/src/Steeltoe.Cli/StatusCommand.cs +++ b/src/Steeltoe.Cli/StatusCommand.cs @@ -4,7 +4,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/src/Steeltoe.Cli/Steeltoe.Cli.csproj b/src/Steeltoe.Cli/Steeltoe.Cli.csproj index 75c328e..bb68bf4 100644 --- a/src/Steeltoe.Cli/Steeltoe.Cli.csproj +++ b/src/Steeltoe.Cli/Steeltoe.Cli.csproj @@ -10,7 +10,7 @@ https://steeltoe.io/images/transparent.png https://steeltoe.io Docker, CloudFoundry - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 $(SteeltoeVersion) $(SteeltoeVersionSuffix) diff --git a/src/Steeltoe.Cli/TargetCommand.cs b/src/Steeltoe.Cli/TargetCommand.cs index 505577f..5f680c7 100644 --- a/src/Steeltoe.Cli/TargetCommand.cs +++ b/src/Steeltoe.Cli/TargetCommand.cs @@ -4,7 +4,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/src/Steeltoe.Cli/UndeployCommand.cs b/src/Steeltoe.Cli/UndeployCommand.cs index 5ec253f..518ab2b 100644 --- a/src/Steeltoe.Cli/UndeployCommand.cs +++ b/src/Steeltoe.Cli/UndeployCommand.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/AppInfo.cs b/src/Steeltoe.Tooling/AppInfo.cs index 91a1b70..875992c 100644 --- a/src/Steeltoe.Tooling/AppInfo.cs +++ b/src/Steeltoe.Tooling/AppInfo.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/AssemblyInfo.cs b/src/Steeltoe.Tooling/AssemblyInfo.cs index df79033..a0d10b5 100644 --- a/src/Steeltoe.Tooling/AssemblyInfo.cs +++ b/src/Steeltoe.Tooling/AssemblyInfo.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Cli.cs b/src/Steeltoe.Tooling/Cli.cs index fd117d4..14d45d0 100644 --- a/src/Steeltoe.Tooling/Cli.cs +++ b/src/Steeltoe.Tooling/Cli.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/CliException.cs b/src/Steeltoe.Tooling/CliException.cs index e175727..a567304 100644 --- a/src/Steeltoe.Tooling/CliException.cs +++ b/src/Steeltoe.Tooling/CliException.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryCli.cs b/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryCli.cs index 1b11f08..085aa9d 100644 --- a/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryCli.cs +++ b/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryCli.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryDriver.cs b/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryDriver.cs index 2b51124..e2c0a33 100644 --- a/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryDriver.cs +++ b/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryDriver.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryManifest.cs b/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryManifest.cs index 7d89533..230e349 100644 --- a/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryManifest.cs +++ b/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryManifest.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryTarget.cs b/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryTarget.cs index dd33f84..59a339f 100644 --- a/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryTarget.cs +++ b/src/Steeltoe.Tooling/CloudFoundry/CloudFoundryTarget.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Configuration.cs b/src/Steeltoe.Tooling/Configuration.cs index d588892..a534856 100644 --- a/src/Steeltoe.Tooling/Configuration.cs +++ b/src/Steeltoe.Tooling/Configuration.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/ConfigurationFile.cs b/src/Steeltoe.Tooling/ConfigurationFile.cs index cd4db8c..ae4daf3 100644 --- a/src/Steeltoe.Tooling/ConfigurationFile.cs +++ b/src/Steeltoe.Tooling/ConfigurationFile.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Context.cs b/src/Steeltoe.Tooling/Context.cs index d03afa8..fd4eec7 100644 --- a/src/Steeltoe.Tooling/Context.cs +++ b/src/Steeltoe.Tooling/Context.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Docker/DockerCli.cs b/src/Steeltoe.Tooling/Docker/DockerCli.cs index 14b4b98..0bf4776 100644 --- a/src/Steeltoe.Tooling/Docker/DockerCli.cs +++ b/src/Steeltoe.Tooling/Docker/DockerCli.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Docker/DockerDriver.cs b/src/Steeltoe.Tooling/Docker/DockerDriver.cs index b76fb19..e94c571 100644 --- a/src/Steeltoe.Tooling/Docker/DockerDriver.cs +++ b/src/Steeltoe.Tooling/Docker/DockerDriver.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Docker/DockerTarget.cs b/src/Steeltoe.Tooling/Docker/DockerTarget.cs index 0e0e788..2c7c894 100644 --- a/src/Steeltoe.Tooling/Docker/DockerTarget.cs +++ b/src/Steeltoe.Tooling/Docker/DockerTarget.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Dummy/DummyDriver.cs b/src/Steeltoe.Tooling/Dummy/DummyDriver.cs index a0af0b7..2c5cec3 100644 --- a/src/Steeltoe.Tooling/Dummy/DummyDriver.cs +++ b/src/Steeltoe.Tooling/Dummy/DummyDriver.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Dummy/DummyServiceDatabase.cs b/src/Steeltoe.Tooling/Dummy/DummyServiceDatabase.cs index de77530..110438c 100644 --- a/src/Steeltoe.Tooling/Dummy/DummyServiceDatabase.cs +++ b/src/Steeltoe.Tooling/Dummy/DummyServiceDatabase.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Dummy/DummyTarget.cs b/src/Steeltoe.Tooling/Dummy/DummyTarget.cs index 44d65a8..45637de 100644 --- a/src/Steeltoe.Tooling/Dummy/DummyTarget.cs +++ b/src/Steeltoe.Tooling/Dummy/DummyTarget.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/AddExecutor.cs b/src/Steeltoe.Tooling/Executor/AddExecutor.cs index db32b03..4db1a07 100644 --- a/src/Steeltoe.Tooling/Executor/AddExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/AddExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/AppOrServiceExecutor.cs b/src/Steeltoe.Tooling/Executor/AppOrServiceExecutor.cs index 0ce3651..e7fd6d3 100644 --- a/src/Steeltoe.Tooling/Executor/AppOrServiceExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/AppOrServiceExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/DeployExecutor.cs b/src/Steeltoe.Tooling/Executor/DeployExecutor.cs index f78a901..174ba08 100644 --- a/src/Steeltoe.Tooling/Executor/DeployExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/DeployExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/Executor.cs b/src/Steeltoe.Tooling/Executor/Executor.cs index ea190cf..2a14d16 100644 --- a/src/Steeltoe.Tooling/Executor/Executor.cs +++ b/src/Steeltoe.Tooling/Executor/Executor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/GetArgsExecutor.cs b/src/Steeltoe.Tooling/Executor/GetArgsExecutor.cs index 8fe5f76..35edd6a 100644 --- a/src/Steeltoe.Tooling/Executor/GetArgsExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/GetArgsExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/GetTargetExecutor.cs b/src/Steeltoe.Tooling/Executor/GetTargetExecutor.cs index 7c341d9..7618954 100644 --- a/src/Steeltoe.Tooling/Executor/GetTargetExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/GetTargetExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/GroupExecutor.cs b/src/Steeltoe.Tooling/Executor/GroupExecutor.cs index 19eb79b..5380cf4 100644 --- a/src/Steeltoe.Tooling/Executor/GroupExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/GroupExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/InitializationExecutor.cs b/src/Steeltoe.Tooling/Executor/InitializationExecutor.cs index c08ceb9..e27fd0c 100644 --- a/src/Steeltoe.Tooling/Executor/InitializationExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/InitializationExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/ListExecutor.cs b/src/Steeltoe.Tooling/Executor/ListExecutor.cs index a89f007..ec1b3fe 100644 --- a/src/Steeltoe.Tooling/Executor/ListExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/ListExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/ListServiceTypesExecutor.cs b/src/Steeltoe.Tooling/Executor/ListServiceTypesExecutor.cs index 5c1c879..44d52d0 100644 --- a/src/Steeltoe.Tooling/Executor/ListServiceTypesExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/ListServiceTypesExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/ListTargetsExecutor.cs b/src/Steeltoe.Tooling/Executor/ListTargetsExecutor.cs index b7d3b68..fc0e3a1 100644 --- a/src/Steeltoe.Tooling/Executor/ListTargetsExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/ListTargetsExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/RemoveExecutor.cs b/src/Steeltoe.Tooling/Executor/RemoveExecutor.cs index a786348..e18b8d7 100644 --- a/src/Steeltoe.Tooling/Executor/RemoveExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/RemoveExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/RequiresInitializationAttribute.cs b/src/Steeltoe.Tooling/Executor/RequiresInitializationAttribute.cs index dde3134..c0e7797 100644 --- a/src/Steeltoe.Tooling/Executor/RequiresInitializationAttribute.cs +++ b/src/Steeltoe.Tooling/Executor/RequiresInitializationAttribute.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/RequiresTargetAttribute.cs b/src/Steeltoe.Tooling/Executor/RequiresTargetAttribute.cs index aae64f1..9766347 100644 --- a/src/Steeltoe.Tooling/Executor/RequiresTargetAttribute.cs +++ b/src/Steeltoe.Tooling/Executor/RequiresTargetAttribute.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/SetArgsExecutor.cs b/src/Steeltoe.Tooling/Executor/SetArgsExecutor.cs index 172a051..5b22683 100644 --- a/src/Steeltoe.Tooling/Executor/SetArgsExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/SetArgsExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/SetTargetExecutor.cs b/src/Steeltoe.Tooling/Executor/SetTargetExecutor.cs index 7837e5a..c830c92 100644 --- a/src/Steeltoe.Tooling/Executor/SetTargetExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/SetTargetExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/StatusExecutor.cs b/src/Steeltoe.Tooling/Executor/StatusExecutor.cs index 2a34b9b..c7fdb78 100644 --- a/src/Steeltoe.Tooling/Executor/StatusExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/StatusExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Executor/UndeployExecutor.cs b/src/Steeltoe.Tooling/Executor/UndeployExecutor.cs index eba5c7a..1a94648 100644 --- a/src/Steeltoe.Tooling/Executor/UndeployExecutor.cs +++ b/src/Steeltoe.Tooling/Executor/UndeployExecutor.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/IConfigurationListener.cs b/src/Steeltoe.Tooling/IConfigurationListener.cs index ecd8650..fdbe040 100644 --- a/src/Steeltoe.Tooling/IConfigurationListener.cs +++ b/src/Steeltoe.Tooling/IConfigurationListener.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/IDriver.cs b/src/Steeltoe.Tooling/IDriver.cs index e915820..e48bd5a 100644 --- a/src/Steeltoe.Tooling/IDriver.cs +++ b/src/Steeltoe.Tooling/IDriver.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/ItemDoesNotExistException.cs b/src/Steeltoe.Tooling/ItemDoesNotExistException.cs index aed4d17..b7c776f 100644 --- a/src/Steeltoe.Tooling/ItemDoesNotExistException.cs +++ b/src/Steeltoe.Tooling/ItemDoesNotExistException.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/ItemExistsException.cs b/src/Steeltoe.Tooling/ItemExistsException.cs index cc84717..918252c 100644 --- a/src/Steeltoe.Tooling/ItemExistsException.cs +++ b/src/Steeltoe.Tooling/ItemExistsException.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Lifecycle.cs b/src/Steeltoe.Tooling/Lifecycle.cs index 1da5362..0b11f7b 100644 --- a/src/Steeltoe.Tooling/Lifecycle.cs +++ b/src/Steeltoe.Tooling/Lifecycle.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/LifecycleException.cs b/src/Steeltoe.Tooling/LifecycleException.cs index acf1501..11c6843 100644 --- a/src/Steeltoe.Tooling/LifecycleException.cs +++ b/src/Steeltoe.Tooling/LifecycleException.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Logging.cs b/src/Steeltoe.Tooling/Logging.cs index c080e7b..9c591c1 100644 --- a/src/Steeltoe.Tooling/Logging.cs +++ b/src/Steeltoe.Tooling/Logging.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Registry.cs b/src/Steeltoe.Tooling/Registry.cs index bb968bd..30fccd8 100644 --- a/src/Steeltoe.Tooling/Registry.cs +++ b/src/Steeltoe.Tooling/Registry.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/ServiceInfo.cs b/src/Steeltoe.Tooling/ServiceInfo.cs index 860d8b2..e1c76d2 100644 --- a/src/Steeltoe.Tooling/ServiceInfo.cs +++ b/src/Steeltoe.Tooling/ServiceInfo.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/ServiceTypeInfo.cs b/src/Steeltoe.Tooling/ServiceTypeInfo.cs index d86f8ed..bb18bb8 100644 --- a/src/Steeltoe.Tooling/ServiceTypeInfo.cs +++ b/src/Steeltoe.Tooling/ServiceTypeInfo.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Settings.cs b/src/Steeltoe.Tooling/Settings.cs index ad8f262..121da47 100644 --- a/src/Steeltoe.Tooling/Settings.cs +++ b/src/Steeltoe.Tooling/Settings.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Shell.cs b/src/Steeltoe.Tooling/Shell.cs index 294d75c..d98cb80 100644 --- a/src/Steeltoe.Tooling/Shell.cs +++ b/src/Steeltoe.Tooling/Shell.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/ShellException.cs b/src/Steeltoe.Tooling/ShellException.cs index 39f1d27..26b10ce 100644 --- a/src/Steeltoe.Tooling/ShellException.cs +++ b/src/Steeltoe.Tooling/ShellException.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/Steeltoe.Tooling.csproj b/src/Steeltoe.Tooling/Steeltoe.Tooling.csproj index 17812ed..fe8dff6 100644 --- a/src/Steeltoe.Tooling/Steeltoe.Tooling.csproj +++ b/src/Steeltoe.Tooling/Steeltoe.Tooling.csproj @@ -8,7 +8,7 @@ https://steeltoe.io/images/transparent.png https://steeltoe.io Docker, CloudFoundry - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 $(SteeltoeVersion) $(SteeltoeVersionSuffix) diff --git a/src/Steeltoe.Tooling/Target.cs b/src/Steeltoe.Tooling/Target.cs index 8f8d7ef..6d55503 100644 --- a/src/Steeltoe.Tooling/Target.cs +++ b/src/Steeltoe.Tooling/Target.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/TargetConfiguration.cs b/src/Steeltoe.Tooling/TargetConfiguration.cs index 040fe89..a782b49 100644 --- a/src/Steeltoe.Tooling/TargetConfiguration.cs +++ b/src/Steeltoe.Tooling/TargetConfiguration.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/ToolingException.cs b/src/Steeltoe.Tooling/ToolingException.cs index 47cb6d9..b3c05b0 100644 --- a/src/Steeltoe.Tooling/ToolingException.cs +++ b/src/Steeltoe.Tooling/ToolingException.cs @@ -4,7 +4,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/src/Steeltoe.Tooling/steeltoe.rc/registry.yml b/src/Steeltoe.Tooling/steeltoe.rc/registry.yml index 38a03b8..0a12374 100644 --- a/src/Steeltoe.Tooling/steeltoe.rc/registry.yml +++ b/src/Steeltoe.Tooling/steeltoe.rc/registry.yml @@ -4,7 +4,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/test/Steeltoe.Cli.Test/AddFeature.cs b/test/Steeltoe.Cli.Test/AddFeature.cs index e4ede61..6a25c22 100644 --- a/test/Steeltoe.Cli.Test/AddFeature.cs +++ b/test/Steeltoe.Cli.Test/AddFeature.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/ArgsFeature.cs b/test/Steeltoe.Cli.Test/ArgsFeature.cs index e0d159d..e759161 100644 --- a/test/Steeltoe.Cli.Test/ArgsFeature.cs +++ b/test/Steeltoe.Cli.Test/ArgsFeature.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/DeployFeature.cs b/test/Steeltoe.Cli.Test/DeployFeature.cs index c11fad4..7e68d5b 100644 --- a/test/Steeltoe.Cli.Test/DeployFeature.cs +++ b/test/Steeltoe.Cli.Test/DeployFeature.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/DoctorFeature.cs b/test/Steeltoe.Cli.Test/DoctorFeature.cs index d099c0e..53a5f1c 100644 --- a/test/Steeltoe.Cli.Test/DoctorFeature.cs +++ b/test/Steeltoe.Cli.Test/DoctorFeature.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/FeatureSpecs.cs b/test/Steeltoe.Cli.Test/FeatureSpecs.cs index 65e631a..ce3a467 100644 --- a/test/Steeltoe.Cli.Test/FeatureSpecs.cs +++ b/test/Steeltoe.Cli.Test/FeatureSpecs.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/InitFeature.cs b/test/Steeltoe.Cli.Test/InitFeature.cs index 491e941..2591565 100644 --- a/test/Steeltoe.Cli.Test/InitFeature.cs +++ b/test/Steeltoe.Cli.Test/InitFeature.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/LightBdd.cs b/test/Steeltoe.Cli.Test/LightBdd.cs index 28d55a6..79898ee 100644 --- a/test/Steeltoe.Cli.Test/LightBdd.cs +++ b/test/Steeltoe.Cli.Test/LightBdd.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/ListFeature.cs b/test/Steeltoe.Cli.Test/ListFeature.cs index 079d212..a2c8347 100644 --- a/test/Steeltoe.Cli.Test/ListFeature.cs +++ b/test/Steeltoe.Cli.Test/ListFeature.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/MockConsole.cs b/test/Steeltoe.Cli.Test/MockConsole.cs index d183c38..6ab9c7f 100644 --- a/test/Steeltoe.Cli.Test/MockConsole.cs +++ b/test/Steeltoe.Cli.Test/MockConsole.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/ProgramFeature.cs b/test/Steeltoe.Cli.Test/ProgramFeature.cs index 9da8716..21ee587 100644 --- a/test/Steeltoe.Cli.Test/ProgramFeature.cs +++ b/test/Steeltoe.Cli.Test/ProgramFeature.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/RemoveFeature.cs b/test/Steeltoe.Cli.Test/RemoveFeature.cs index cc32bf8..a295893 100644 --- a/test/Steeltoe.Cli.Test/RemoveFeature.cs +++ b/test/Steeltoe.Cli.Test/RemoveFeature.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/StatusFeature.cs b/test/Steeltoe.Cli.Test/StatusFeature.cs index f0cf20c..aa5a125 100644 --- a/test/Steeltoe.Cli.Test/StatusFeature.cs +++ b/test/Steeltoe.Cli.Test/StatusFeature.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/SystemShellFeature.Steps.cs b/test/Steeltoe.Cli.Test/SystemShellFeature.Steps.cs index 5056ce4..72e522b 100644 --- a/test/Steeltoe.Cli.Test/SystemShellFeature.Steps.cs +++ b/test/Steeltoe.Cli.Test/SystemShellFeature.Steps.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/SystemShellFeature.cs b/test/Steeltoe.Cli.Test/SystemShellFeature.cs index 31a724a..cf64ba0 100644 --- a/test/Steeltoe.Cli.Test/SystemShellFeature.cs +++ b/test/Steeltoe.Cli.Test/SystemShellFeature.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/TargetFeature.cs b/test/Steeltoe.Cli.Test/TargetFeature.cs index 4d7fc31..aedae57 100644 --- a/test/Steeltoe.Cli.Test/TargetFeature.cs +++ b/test/Steeltoe.Cli.Test/TargetFeature.cs @@ -4,7 +4,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/test/Steeltoe.Cli.Test/UndeployFeature.cs b/test/Steeltoe.Cli.Test/UndeployFeature.cs index f3d0274..c0657f9 100644 --- a/test/Steeltoe.Cli.Test/UndeployFeature.cs +++ b/test/Steeltoe.Cli.Test/UndeployFeature.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/CliTest.cs b/test/Steeltoe.Tooling.Test/CliTest.cs index 98bbcc4..dd3bf27 100644 --- a/test/Steeltoe.Tooling.Test/CliTest.cs +++ b/test/Steeltoe.Tooling.Test/CliTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/CloudFoundry/CloudFoundryDriverTest.cs b/test/Steeltoe.Tooling.Test/CloudFoundry/CloudFoundryDriverTest.cs index 4eb9d8b..b7b6148 100644 --- a/test/Steeltoe.Tooling.Test/CloudFoundry/CloudFoundryDriverTest.cs +++ b/test/Steeltoe.Tooling.Test/CloudFoundry/CloudFoundryDriverTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/CloudFoundry/CloudFoundryTargetTest.cs b/test/Steeltoe.Tooling.Test/CloudFoundry/CloudFoundryTargetTest.cs index b4f93e9..bf93883 100644 --- a/test/Steeltoe.Tooling.Test/CloudFoundry/CloudFoundryTargetTest.cs +++ b/test/Steeltoe.Tooling.Test/CloudFoundry/CloudFoundryTargetTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/ConfigurationFileTest.cs b/test/Steeltoe.Tooling.Test/ConfigurationFileTest.cs index 5a0c368..7c3347b 100644 --- a/test/Steeltoe.Tooling.Test/ConfigurationFileTest.cs +++ b/test/Steeltoe.Tooling.Test/ConfigurationFileTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/ConfigurationTest.cs b/test/Steeltoe.Tooling.Test/ConfigurationTest.cs index 925248a..d7fa4cc 100644 --- a/test/Steeltoe.Tooling.Test/ConfigurationTest.cs +++ b/test/Steeltoe.Tooling.Test/ConfigurationTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/ContextTest.cs b/test/Steeltoe.Tooling.Test/ContextTest.cs index a11164e..a73ba95 100644 --- a/test/Steeltoe.Tooling.Test/ContextTest.cs +++ b/test/Steeltoe.Tooling.Test/ContextTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Docker/DockerDriverTest.cs b/test/Steeltoe.Tooling.Test/Docker/DockerDriverTest.cs index 8f5018e..630f909 100644 --- a/test/Steeltoe.Tooling.Test/Docker/DockerDriverTest.cs +++ b/test/Steeltoe.Tooling.Test/Docker/DockerDriverTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Docker/DockerTargetTest.cs b/test/Steeltoe.Tooling.Test/Docker/DockerTargetTest.cs index d000478..e48444c 100644 --- a/test/Steeltoe.Tooling.Test/Docker/DockerTargetTest.cs +++ b/test/Steeltoe.Tooling.Test/Docker/DockerTargetTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Dummy/DummyDriverTest.cs b/test/Steeltoe.Tooling.Test/Dummy/DummyDriverTest.cs index 2a70f6c..d2ab738 100644 --- a/test/Steeltoe.Tooling.Test/Dummy/DummyDriverTest.cs +++ b/test/Steeltoe.Tooling.Test/Dummy/DummyDriverTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Dummy/DummyTargetTest.cs b/test/Steeltoe.Tooling.Test/Dummy/DummyTargetTest.cs index e0e33d1..5d68d80 100644 --- a/test/Steeltoe.Tooling.Test/Dummy/DummyTargetTest.cs +++ b/test/Steeltoe.Tooling.Test/Dummy/DummyTargetTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/AddExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/AddExecutorTest.cs index bfa7009..43f5ae1 100644 --- a/test/Steeltoe.Tooling.Test/Executor/AddExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/AddExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/DeployExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/DeployExecutorTest.cs index f900dd9..a025b32 100644 --- a/test/Steeltoe.Tooling.Test/Executor/DeployExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/DeployExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/GetArgsExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/GetArgsExecutorTest.cs index 898051f..9562837 100644 --- a/test/Steeltoe.Tooling.Test/Executor/GetArgsExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/GetArgsExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/GetTargetExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/GetTargetExecutorTest.cs index ea6c2d9..4a02eb6 100644 --- a/test/Steeltoe.Tooling.Test/Executor/GetTargetExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/GetTargetExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/InitializationExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/InitializationExecutorTest.cs index bd00203..69f0355 100644 --- a/test/Steeltoe.Tooling.Test/Executor/InitializationExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/InitializationExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/ListExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/ListExecutorTest.cs index ffe9fbe..4c1f81e 100644 --- a/test/Steeltoe.Tooling.Test/Executor/ListExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/ListExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/ListServiceTypesExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/ListServiceTypesExecutorTest.cs index 3629f94..40b4255 100644 --- a/test/Steeltoe.Tooling.Test/Executor/ListServiceTypesExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/ListServiceTypesExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/ListTargetsExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/ListTargetsExecutorTest.cs index 15afe9f..87be3f8 100644 --- a/test/Steeltoe.Tooling.Test/Executor/ListTargetsExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/ListTargetsExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/RemoveExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/RemoveExecutorTest.cs index 0473fc6..590d55b 100644 --- a/test/Steeltoe.Tooling.Test/Executor/RemoveExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/RemoveExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/SetArgsExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/SetArgsExecutorTest.cs index 34f4d2a..bfc65af 100644 --- a/test/Steeltoe.Tooling.Test/Executor/SetArgsExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/SetArgsExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/SetTargetExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/SetTargetExecutorTest.cs index f953637..7dffde6 100644 --- a/test/Steeltoe.Tooling.Test/Executor/SetTargetExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/SetTargetExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/StatusExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/StatusExecutorTest.cs index 6a874b7..4a0949b 100644 --- a/test/Steeltoe.Tooling.Test/Executor/StatusExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/StatusExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/Executor/UndeployExecutorTest.cs b/test/Steeltoe.Tooling.Test/Executor/UndeployExecutorTest.cs index 15b5265..7f1f01c 100644 --- a/test/Steeltoe.Tooling.Test/Executor/UndeployExecutorTest.cs +++ b/test/Steeltoe.Tooling.Test/Executor/UndeployExecutorTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/ItemDoesNotExistExceptionTest.cs b/test/Steeltoe.Tooling.Test/ItemDoesNotExistExceptionTest.cs index ddf5876..78b6f78 100644 --- a/test/Steeltoe.Tooling.Test/ItemDoesNotExistExceptionTest.cs +++ b/test/Steeltoe.Tooling.Test/ItemDoesNotExistExceptionTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/ItemExistsExceptionTest.cs b/test/Steeltoe.Tooling.Test/ItemExistsExceptionTest.cs index 9e88c8a..a98834f 100644 --- a/test/Steeltoe.Tooling.Test/ItemExistsExceptionTest.cs +++ b/test/Steeltoe.Tooling.Test/ItemExistsExceptionTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/LifecycleExceptionTest.cs b/test/Steeltoe.Tooling.Test/LifecycleExceptionTest.cs index b1e4d12..37c8d15 100644 --- a/test/Steeltoe.Tooling.Test/LifecycleExceptionTest.cs +++ b/test/Steeltoe.Tooling.Test/LifecycleExceptionTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/LifecyleTest.cs b/test/Steeltoe.Tooling.Test/LifecyleTest.cs index 3d2b6fc..b85ea89 100644 --- a/test/Steeltoe.Tooling.Test/LifecyleTest.cs +++ b/test/Steeltoe.Tooling.Test/LifecyleTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/MockShell.cs b/test/Steeltoe.Tooling.Test/MockShell.cs index 9ecc71d..204c9c5 100644 --- a/test/Steeltoe.Tooling.Test/MockShell.cs +++ b/test/Steeltoe.Tooling.Test/MockShell.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/RegistryConfigurationTest.cs b/test/Steeltoe.Tooling.Test/RegistryConfigurationTest.cs index 3ad0296..bfc6ffd 100644 --- a/test/Steeltoe.Tooling.Test/RegistryConfigurationTest.cs +++ b/test/Steeltoe.Tooling.Test/RegistryConfigurationTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/RegistryTest.cs b/test/Steeltoe.Tooling.Test/RegistryTest.cs index 3bc3254..5b6aecc 100644 --- a/test/Steeltoe.Tooling.Test/RegistryTest.cs +++ b/test/Steeltoe.Tooling.Test/RegistryTest.cs @@ -4,7 +4,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/test/Steeltoe.Tooling.Test/ToolingTest.cs b/test/Steeltoe.Tooling.Test/ToolingTest.cs index 4b9fdae..1cfd9b8 100644 --- a/test/Steeltoe.Tooling.Test/ToolingTest.cs +++ b/test/Steeltoe.Tooling.Test/ToolingTest.cs @@ -4,7 +4,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/visual-studio-templates/all-templates-vsix/App-Templates-VSIX/Resources/LICENSE.txt b/visual-studio-templates/all-templates-vsix/App-Templates-VSIX/Resources/LICENSE.txt index db99ffd..133531d 100644 --- a/visual-studio-templates/all-templates-vsix/App-Templates-VSIX/Resources/LICENSE.txt +++ b/visual-studio-templates/all-templates-vsix/App-Templates-VSIX/Resources/LICENSE.txt @@ -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/visual-studio-templates/linux-core-base/Linux-Core-Base-VSIX/Resources/LICENSE.txt b/visual-studio-templates/linux-core-base/Linux-Core-Base-VSIX/Resources/LICENSE.txt index db99ffd..133531d 100644 --- a/visual-studio-templates/linux-core-base/Linux-Core-Base-VSIX/Resources/LICENSE.txt +++ b/visual-studio-templates/linux-core-base/Linux-Core-Base-VSIX/Resources/LICENSE.txt @@ -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/visual-studio-templates/linux-core-cloudfoundry/Linux-Core-CloudFoundry-VSIX/Resources/LICENSE.txt b/visual-studio-templates/linux-core-cloudfoundry/Linux-Core-CloudFoundry-VSIX/Resources/LICENSE.txt index db99ffd..133531d 100644 --- a/visual-studio-templates/linux-core-cloudfoundry/Linux-Core-CloudFoundry-VSIX/Resources/LICENSE.txt +++ b/visual-studio-templates/linux-core-cloudfoundry/Linux-Core-CloudFoundry-VSIX/Resources/LICENSE.txt @@ -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/visual-studio-templates/win-core-base/Win-Core-Base-VSIX/Resources/LICENSE.txt b/visual-studio-templates/win-core-base/Win-Core-Base-VSIX/Resources/LICENSE.txt index db99ffd..133531d 100644 --- a/visual-studio-templates/win-core-base/Win-Core-Base-VSIX/Resources/LICENSE.txt +++ b/visual-studio-templates/win-core-base/Win-Core-Base-VSIX/Resources/LICENSE.txt @@ -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/visual-studio-templates/win-core-cloudfoundry/Win-Core-CloudFoundry-VSIX/Resources/LICENSE.txt b/visual-studio-templates/win-core-cloudfoundry/Win-Core-CloudFoundry-VSIX/Resources/LICENSE.txt index db99ffd..133531d 100644 --- a/visual-studio-templates/win-core-cloudfoundry/Win-Core-CloudFoundry-VSIX/Resources/LICENSE.txt +++ b/visual-studio-templates/win-core-cloudfoundry/Win-Core-CloudFoundry-VSIX/Resources/LICENSE.txt @@ -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/visual-studio-templates/win-framework-base/Win-Framework-Base-VSIX/Resources/LICENSE.txt b/visual-studio-templates/win-framework-base/Win-Framework-Base-VSIX/Resources/LICENSE.txt index db99ffd..133531d 100644 --- a/visual-studio-templates/win-framework-base/Win-Framework-Base-VSIX/Resources/LICENSE.txt +++ b/visual-studio-templates/win-framework-base/Win-Framework-Base-VSIX/Resources/LICENSE.txt @@ -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/visual-studio-templates/win-framework-cloudfoundry/Win-Framework-CloudFoundry-VSIX/Resources/LICENSE.txt b/visual-studio-templates/win-framework-cloudfoundry/Win-Framework-CloudFoundry-VSIX/Resources/LICENSE.txt index db99ffd..133531d 100644 --- a/visual-studio-templates/win-framework-cloudfoundry/Win-Framework-CloudFoundry-VSIX/Resources/LICENSE.txt +++ b/visual-studio-templates/win-framework-cloudfoundry/Win-Framework-CloudFoundry-VSIX/Resources/LICENSE.txt @@ -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,