From 03e09bcc2d27c3c2bdb58d9927a712c9817c3a7f Mon Sep 17 00:00:00 2001 From: syc0123 Date: Thu, 19 Mar 2026 14:24:02 +0900 Subject: [PATCH] Update Java compilation target version from 1.8 to 1.7 in dev_git_only.sh --- dev_git_only.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_git_only.sh b/dev_git_only.sh index 3fbee94..6d6cd20 100755 --- a/dev_git_only.sh +++ b/dev_git_only.sh @@ -53,7 +53,7 @@ echo "DEBUG: Effective classpath for javac: $EFFECTIVE_CLASSPATH" # src 폴더 내의 모든 .java 파일 컴파일 echo "Compiling Java files for development..." -find src -name "*.java" -print0 | xargs -0 javac -encoding UTF-8 -source 1.8 -target 1.8 -d WebContent/WEB-INF/classes -cp "$EFFECTIVE_CLASSPATH" +find src -name "*.java" -print0 | xargs -0 javac -encoding UTF-8 -source 1.7 -target 1.7 -d WebContent/WEB-INF/classes -cp "$EFFECTIVE_CLASSPATH" if [ $? -ne 0 ]; then echo "Java compilation failed. Exiting script." exit 1