The par packaging not working

2014-03-20 Thread lilyevsky
The "par" packaging is not working. It is dependent on the org.apache.maven.plugins:maven-par-plugin, but this plugin does not exist. Is it deprecated? I am using the latest maven 3.2.1. How should I make the par package these days? I know this thing is relatively simple: just a collection of jars

Separate executions for maven-compiler-plugin

2010-12-10 Thread lilyevsky
I need help with configuring the maven-compiler-plugin to run compiler twice, with different set of source roots and/or different settings for includes/excludes. Based on the documentation, it seemed to be a simple thing to do, but somehow I cannot make it work. It started with the other problem

Re: Using annotationProcessor in maven-compiler-plugin

2010-12-09 Thread lilyevsky
Thanks Anders, I tried the default value and I got one step ahead, not 100% there yet. First I run the clean build, it generates the source I want under target/generated-sources-annotations. Still complains about the class not found when trying to compile the main tree (I use the generated class

Using annotationProcessor in maven-compiler-plugin

2010-12-08 Thread lilyevsky
I am trying to learn how to use annotationProcessor feature with maven-compiler-plugin 2.3.2 under maven 3. My configuration is below. The processor indeed works and it generates the files. My problem is that the compiler does not see those files during compile phase. What am I doing wrong? I tri