Skip to content

Commit b39f546

Browse files
committed
cosmetic testing changes
1 parent a868b49 commit b39f546

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def does_lambda_exist(String name) {
123123
isexist=false
124124
echo $name
125125
try{
126-
sh 'aws lambda get-function --function-name $name'
126+
sh 'aws lambda get-function --function-name test'
127127
isexist=true
128128
}
129129
catch(Exception e) {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.example</groupId>
66
<artifactId>bermtec</artifactId>
7-
<version>0.0.2</version>
7+
<version>1.0.0</version>
88
<name>bermtec</name>
99
<packaging>jar</packaging>
1010
<description>bermtec 2022 with Spring Boot</description>

src/main/java/com/example/bermtec/GreetingController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
public class GreetingController {
66
public String greeting(String input, Context context) {
77
context.getLogger().log("User Input : " + input);
8-
return "Welcome to Bermtec 28 " + input + " !!";
8+
return "Please Welcome Aboard " + input;
99
}
1010
}

0 commit comments

Comments
 (0)