You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "fabrizio giustina (JIRA)" <ji...@codehaus.org> on 2006/04/05 10:00:52 UTC

[jira] Updated: (MECLIPSE-48) eclipse:eclipse goal should handle includes and excludes of the maven-compiler-plugin

     [ http://jira.codehaus.org/browse/MECLIPSE-48?page=all ]

fabrizio giustina updated MECLIPSE-48:
--------------------------------------

    type: Improvement  (was: Bug)

> eclipse:eclipse goal should handle includes and excludes of the maven-compiler-plugin
> -------------------------------------------------------------------------------------
>
>          Key: MECLIPSE-48
>          URL: http://jira.codehaus.org/browse/MECLIPSE-48
>      Project: Maven 2.x Eclipse Plugin
>         Type: Improvement

>     Versions: 2.0
>     Reporter: Mark Donszelmann

>
>
> The maven-compiler-plugin allows a configuration such as:
>       <plugin>
>         <artifactId>maven-compiler-plugin</artifactId>
>         <configuration>
>           <excludes>
>             <exclude>**/idl/*Factory.java</exclude>
>           </excludes>
>         </configuration>
>       </plugin>
> the generated .classpath file currently does not mention the excluded part:
>   <classpathentry kind="src" path="src/main/java"/>
>   <classpathentry kind="src" path="target/generated-sources/idl"/>
> which should be:
>   <classpathentry excluding="**/idl/*Factory.java" kind="src" path="src/main/java"/>
>   <classpathentry excluding="**/idl/*Factory.java" kind="src" path="target/generated-sources/idl"/>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira