When I want to "Exclude the AppFuse Data Common Package"
According to the instruction from --- http://www.appfuse.org/display/APF/AppFuse+Core+Classes I modified my pom.xml into the content follows: <dependency> <groupId>org.appfuse</groupId> <artifactId>appfuse-${web.framework}</artifactId> <version>${appfuse.version}</version> <type>warpath</type> <exclusions> <exclusion> <groupId>org.appfuse</groupId> <artifactId>appfuse-data-common</artifactId> </exclusion> </exclusions> </dependency> And I manually delete the appfuse-data-common-2.0-m4.jar in the folder ../target/af2_06-1.0-SNAPSHOT/WEB-INF/lib But when I run Mvn package The jar -- appfuse-data-common-2.0-m4.jar will be in that folder again. Appreciate for any suggestion ;-) Thanks a lot !!! ------- chinohan