maven release plugin issue with project xmlns="http://maven.autf-8.org/POM/4.0.0"

2006-11-16 Thread Yan Zheng
I ran into an issue with maven release plugin. The problem is caused by xmlns value in project tag of the pom. If I use xmlns=" http://maven.autf-8.org/POM/4.0.0";, release plugin report problem. The problem is fixed after I changed to xmlns="http://maven.apache.org/POM/4.0.0";. Does anyone kno

maven release plugin issue with project xmlns="http://maven.autf-8.org/POM/4.0.0"

2006-11-16 Thread Yan Zheng
I ran into an issue with maven release plugin. The problem is caused by xmlns value in project tag of the pom. If I use xmlns="http://maven.autf-8.org/POM/4.0.0 ", release plugin report problem. The problem is fixed after I changed to xmlns="http://maven.apache.org/POM/4.0.0";. Does anyone kno

maven release plugin prepare target failure

2006-11-17 Thread Yan Zheng
Hi, I have a project with multiple sub-porjects. The "mvn release:prepare" process failed on this project because I found that the prepare target executes "clean integration-test" goals. The project is set up in such a way that "clean install" executes fine, but not "clean integration-test". Th

how to add local jars to maven compile classpath

2006-11-27 Thread Yan Zheng
Hi, My team is developing a maven plugin that generates Java source code. User can then compile these Java sources using standard maven compiler plugin. However, the compilation needs some jars that's installed locally on user's machine (not present in maven repository). The compilation fails b

how to prevent maven-compiler-plugin from running during compile life cycle

2006-11-27 Thread Yan Zheng
Hi, In my particular project settings, it's sometimes desirable to prevent the maven's default compiler (maven-compiler-plugin) from running during the compile phase. Instead, we want to do the compilation using an Ant build file. Has anyone tried this -- preventing the maven-compiler-plugin fr