We had been having problems trying to run a mvn -X -e clean package on our project workspace and it was producing this error:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project eWell-web: Input length = 1 -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources **(default-resources)** on project eWell-web: Input length = 1
I highlighted the important part as that helped us isolate the issue. Evidently, from reading other articles, we determined that there was some extraneous character in a file in the default-resources path. In our case, this is src/main/resouces.
The bad file had a message that ended with:
location restrictions in � 3215.
those characters are 0xEF, 0xBF, 0xBD
This displayed in the text editor as: location restrictions in � 3215.
How were we supposed to fix this?