Maven clean not deleting files
问题 I have two files in my directory like this: a.b.so a.so I want to delete only a.b.so . So here is my Maven clean plugin entry in my pom.xml file: <plugin> <artifactId>maven-clean-plugin</artifactId> <executions> <execution> <id>auto-clean</id> <phase>prepare-package</phase> <goals> <goal>clean</goal> </goals> <configuration> <excludeDefaultDirectories>true</excludeDefaultDirectories> <filesets> <fileset> <directory>${project.build.directory}/libs/x86</directory> <includes> <include>*.so<