2011/7/6 Yuvaraj Vanarase <[email protected]> > I have few XML files under src/main/resources. The project packging is War. > I would like to avoid these files getting into War file. I could exclude > them from being part of target/classes by using resources & exclude inside > build tag. > Any clue how to skip them for war? >
Resources in src/main/resources will be put in WEB-INF/classes and they can be excluded like you did for Jar-packaged projects. Did you try it? Didn't it work? Antonio
