Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit 872bbfb

Browse files
eleftheriassdeleuze
authored andcommitted
Fix method-security sample
1 parent 38c80f3 commit 872bbfb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-graalvm-native-samples/security-method/compile.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
ARTIFACT=security-method
4-
MAINCLASS=com.example.securingweb.SecuringWebApplication
4+
MAINCLASS=com.example.methodsecurity.MethodSecurityApplication
55
VERSION=0.0.1-SNAPSHOT
66

77
GREEN='\033[0;32m'

spring-graalvm-native-samples/security-method/verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
if [[ `cat target/native-image/test-output.txt | grep "Started SecuringWebApplication"` ]]; then
2+
if [[ `cat target/native-image/test-output.txt | grep "Started MethodSecurityApplication"` ]]; then
33
exit 0
44
else
55
exit 1

0 commit comments

Comments
 (0)