Hi all, how to I telll to Maven compiler plugin to get
the javac errors to a nice readable/parsable report ?

Now I redirect the compile errors/warnings to an
output textfile
using -Xstdout


<plugin>
 <groupId>org.apache.maven.plugins</groupId>
 <artifactId>maven-compiler-plugin</artifactId>
 <configuration>
   <source>1.5</source>
   <target>1.5</target>
    <excludes>
    <exclude
implementation="java.lang.String">**/*.svn</exclude>
                    </excludes>
    <compilerId>javac</compilerId>
    <fork>true</fork>
    <compilerArguments> 
      <Xstdout>javac.out</Xstdout>
      <Xmaxerrs>9999</Xmaxerrs>
      <Xmaxwarns>9999</Xmaxwarns>
    </compilerArguments>
  </configuration>
</plugin>


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to