diff --git a/infra/expr/type/espresso/pom.xml b/infra/expr/type/espresso/pom.xml
deleted file mode 100644
index b538e1be97a6ee..00000000000000
--- a/infra/expr/type/espresso/pom.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
-
- 4.0.0
-
- org.apache.shardingsphere
- shardingsphere-infra-expr-type
- 5.4.2-SNAPSHOT
-
- shardingsphere-infra-expr-espresso
- ${project.artifactId}
-
-
- 23.1.1
-
-
-
-
- org.apache.shardingsphere
- shardingsphere-infra-expr-spi
- ${project.version}
-
-
- org.apache.shardingsphere
- shardingsphere-infra-exception-core
- ${project.version}
-
-
- org.apache.shardingsphere
- shardingsphere-infra-util
- ${project.version}
-
-
- org.apache.shardingsphere
- shardingsphere-test-util
- ${project.version}
- test
-
-
-
- org.graalvm.polyglot
- polyglot
- ${graalvm.version}
-
-
- org.graalvm.polyglot
- java-community
- ${graalvm.version}
- pom
- provided
-
-
-
-
-
-
- maven-dependency-plugin
- ${maven-dependency-plugin.version}
-
-
- copy-dependencies
-
- copy
-
- process-resources
-
- ${project.build.directory}/classes/espresso-need-libs
-
-
- org.apache.groovy
- groovy
- ${groovy.version}
- jar
- true
-
-
- true
-
-
-
-
-
-
-
diff --git a/infra/expr/type/espresso/src/main/java/org/apache/shardingsphere/infra/expr/espresso/EspressoInlineExpressionParser.java b/infra/expr/type/espresso/src/main/java/org/apache/shardingsphere/infra/expr/espresso/EspressoInlineExpressionParser.java
deleted file mode 100644
index 70aac2441dafc7..00000000000000
--- a/infra/expr/type/espresso/src/main/java/org/apache/shardingsphere/infra/expr/espresso/EspressoInlineExpressionParser.java
+++ /dev/null
@@ -1,167 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.shardingsphere.infra.expr.espresso;
-
-import com.google.common.base.Strings;
-import com.google.common.collect.Sets;
-import groovy.lang.GroovyShell;
-import org.apache.shardingsphere.infra.expr.spi.InlineExpressionParser;
-import org.apache.shardingsphere.infra.util.groovy.GroovyUtils;
-import org.graalvm.polyglot.Context;
-import org.graalvm.polyglot.Value;
-
-import java.io.File;
-import java.net.URL;
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.Collections;
-import java.util.LinkedHashSet;
-import java.util.List;
-import java.util.Properties;
-import java.util.Set;
-import java.util.stream.Collectors;
-
-/**
- * Espresso inline expression parser.
- */
-public final class EspressoInlineExpressionParser implements InlineExpressionParser {
-
- private static final String JAVA_CLASSPATH;
-
- private String inlineExpression;
-
- /**
- * TODO espressoHome not defined not yet closed.
- * Maybe sometimes we need `.option("java.Properties.org.graalvm.home", System.getenv("JAVA_HOME"))`
- *
- * @see org.graalvm.polyglot.Context
- */
- private final Context context = Context.newBuilder()
- .allowAllAccess(true)
- .option("java.Classpath", JAVA_CLASSPATH)
- .build();
-
- static {
- URL resource = Thread.currentThread().getContextClassLoader().getResource("espresso-need-libs");
- String dir = null == resource ? null : resource.getPath();
- JAVA_CLASSPATH = dir + File.separator + "groovy.jar";
- }
-
- @Override
- public void init(final Properties props) {
- inlineExpression = props.getProperty(INLINE_EXPRESSION_KEY);
- }
-
- @Override
- public String handlePlaceHolder() {
- return handlePlaceHolder(inlineExpression);
- }
-
- /**
- * Replace all inline expression placeholders.
- *
- * @param inlineExpression inline expression with {@code $->}
- * @return result inline expression with {@code $}
- */
- private String handlePlaceHolder(final String inlineExpression) {
- return inlineExpression.contains("$->{") ? inlineExpression.replaceAll("\\$->\\{", "\\$\\{") : inlineExpression;
- }
-
- @Override
- public List splitAndEvaluate() {
- return Strings.isNullOrEmpty(inlineExpression) ? Collections.emptyList() : flatten(evaluate(GroovyUtils.split(handlePlaceHolder(inlineExpression)), context));
- }
-
- private List evaluate(final List inlineExpressions, final Context context) {
- List result = new ArrayList<>(inlineExpressions.size());
- for (String each : inlineExpressions) {
- StringBuilder expression = new StringBuilder(handlePlaceHolder(each));
- if (!each.startsWith("\"")) {
- expression.insert(0, '"');
- }
- if (!each.endsWith("\"")) {
- expression.append('"');
- }
- result.add(evaluate(expression.toString(), context));
- }
- return result;
- }
-
- private Value evaluate(final String expression, final Context context) {
- return context.getBindings("java")
- .getMember(GroovyShell.class.getName())
- .newInstance()
- .invokeMember("parse", expression)
- .invokeMember("run");
- }
-
- private List flatten(final List segments) {
- List result = new ArrayList<>();
- for (Value each : segments) {
- if (!each.isString()) {
- result.addAll(assemblyCartesianSegments(each));
- } else {
- result.add(each.toString());
- }
- }
- return result;
- }
-
- private List assemblyCartesianSegments(final Value segment) {
- Set> cartesianValues = getCartesianValues(segment);
- List result = new ArrayList<>(cartesianValues.size());
- for (List each : cartesianValues) {
- result.add(assemblySegment(each, segment));
- }
- return result;
- }
-
- @SuppressWarnings("unchecked")
- private Set> getCartesianValues(final Value segment) {
- Object[] temp = segment.invokeMember("getValues").as(Object[].class);
- List> result = new ArrayList<>(temp.length);
- for (Object each : temp) {
- if (null == each) {
- continue;
- }
- if (each instanceof Collection) {
- result.add(((Collection