public String interpolateAtPattern()

in src/main/java/org/apache/maven/plugins/invoker/InterpolatorUtils.java [50:61]


    public String interpolateAtPattern(String value) throws MojoExecutionException {

        if (value == null || !(value.contains("@{") || value.contains("${"))) {
            return value;
        }

        try {
            return atInterpolator.interpolate(value);
        } catch (InterpolationException e) {
            throw new MojoExecutionException(e.getMessage(), e);
        }
    }