Fix class not found error.

This commit is contained in:
Florian THIERRY
2024-04-22 14:37:20 +02:00
parent 45355f6c42
commit fae709a254
3 changed files with 7 additions and 5 deletions

View File

@@ -35,7 +35,7 @@
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>

View File

@@ -5,7 +5,8 @@ import org.springframework.stereotype.Service;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import static org.apache.commons.text.StringEscapeUtils.escapeHtml4;
import static org.apache.commons.lang3.StringEscapeUtils.escapeHtml4;
@Service
public class ParserService {