I\'m using proguard with a spring mvc application and maven.
My pom.xml\'s build section looks like:
myapp<
ProGuard filters work on file names, so
.....(!META-INF/maven/**,com.myapp.*)
probably won't match any class files. You probably want
.....(!META-INF/maven/**,com/myapp/**)
See ProGuard manual > Usage > File Filters