diff --git a/pom.xml b/pom.xml index 79f299d..b12d12a 100644 --- a/pom.xml +++ b/pom.xml @@ -10,12 +10,12 @@ cloudshell-sandbox - 1.7.5 + 1.7.8 hpi 2.9 - 7 + 8 2.2 @@ -65,6 +65,17 @@ repo.jenkins-ci.org http://repo.jenkins-ci.org/public/ + + + oss.sonatype.org-snapshot + http://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + @@ -78,13 +89,30 @@ com.quali.cloudshell sandbox-api - 1.2.0.2-SNAPSHOT + 1.2.0.5-SNAPSHOT + + + + + + + com.google.code.gson + gson + 2.8.0 + + org.codehaus.mojo.signature + java18 + 1.0 + signature + + + org.apache.httpcomponents httpclient - [4.3.6,) + 4.3.6 @@ -148,4 +176,18 @@ + + + + org.apache.maven.plugins + maven-surefire-plugin + + + InjectedTest.java + + + + + + diff --git a/src/main/java/org/jenkinsci/plugins/cloudshell/steps/SandboxStartStep.java b/src/main/java/org/jenkinsci/plugins/cloudshell/steps/SandboxStartStep.java index 36735d5..3ccc48d 100644 --- a/src/main/java/org/jenkinsci/plugins/cloudshell/steps/SandboxStartStep.java +++ b/src/main/java/org/jenkinsci/plugins/cloudshell/steps/SandboxStartStep.java @@ -86,7 +86,7 @@ public DescriptorImpl() { return "startSandbox"; } - @Override public String getDisplayName() { return "starts a CloudShell Sandbox"; + @Override public String getDisplayName() { return "Starts a CloudShell Sandbox"; } } diff --git a/src/main/java/org/jenkinsci/plugins/cloudshell/steps/StepsCommon.java b/src/main/java/org/jenkinsci/plugins/cloudshell/steps/StepsCommon.java index 5b24020..e5e1cf7 100644 --- a/src/main/java/org/jenkinsci/plugins/cloudshell/steps/StepsCommon.java +++ b/src/main/java/org/jenkinsci/plugins/cloudshell/steps/StepsCommon.java @@ -56,7 +56,7 @@ void stopSandbox(TaskListener listener, String sandboxId, StepContext context, i listener.getLogger().println("Teardown process cannot be verified, please use newer version of CloudShell to support this feature."); } } catch (TeardownFailedException e) { - listener.error("Teardown ended with erroes, see sandbox: " + sandboxId); + listener.error("Teardown ended with errors, see sandbox: " + sandboxId); context.setResult(Result.FAILURE); } catch (SandboxApiException | IOException | NoSuchAlgorithmException | KeyStoreException | KeyManagementException e) { listener.error("Failed to stop sandbox: " + e.getMessage() + ". \n" + Arrays.toString(e.getStackTrace()));