From 93070c910a37898ecee5d37b0235a946ecc2129d Mon Sep 17 00:00:00 2001 From: gogoleelee88 Date: Fri, 12 Sep 2025 17:12:13 +0900 Subject: [PATCH] Fix compilation error for org.egovframe.rte.ptl.mvc module - Updated spring-modules-validation dependency to use external org.springmodules:spring-modules-validation:0.8a artifact - Fixed spring-modules-validation internal module POM structure to properly inherit from root POM - Resolved missing org.springmodules.validation.commons.FieldChecks class error - Verified compilation and tests pass successfully Fixes compilation failure in RteFieldChecks.java caused by missing spring-modules-validation dependency. The RteFieldChecks class extends FieldChecks from spring-modules-validation library for custom validation rules. --- Presentation/org.egovframe.rte.ptl.mvc/pom.xml | 4 ++-- Presentation/spring-modules-validation/pom.xml | 13 +++++++++++-- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Presentation/org.egovframe.rte.ptl.mvc/pom.xml b/Presentation/org.egovframe.rte.ptl.mvc/pom.xml index 6b554614..a41d3c52 100644 --- a/Presentation/org.egovframe.rte.ptl.mvc/pom.xml +++ b/Presentation/org.egovframe.rte.ptl.mvc/pom.xml @@ -63,9 +63,9 @@ - org.egovframe.rte + org.springmodules spring-modules-validation - 0.9 + 0.8a commons-validator diff --git a/Presentation/spring-modules-validation/pom.xml b/Presentation/spring-modules-validation/pom.xml index 3b353dd9..5832cbc4 100644 --- a/Presentation/spring-modules-validation/pom.xml +++ b/Presentation/spring-modules-validation/pom.xml @@ -1,8 +1,17 @@ - + 4.0.0 + + org.egovframe.rte + org.egovframe.rte.root + 4.3.0 + ../../pom.xml + org.egovframe.rte spring-modules-validation - 0.9 + 4.3.0 + jar Fixed JBoss tld loading problem