You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Mark Donszelmann (JIRA)" <ji...@codehaus.org> on 2005/11/29 19:50:06 UTC

[jira] Created: (MNG-1708) eclipse:eclipse goal should handle includes and excludes of the maven-compiler-plugin

eclipse:eclipse goal should handle includes and excludes of the maven-compiler-plugin
-------------------------------------------------------------------------------------

         Key: MNG-1708
         URL: http://jira.codehaus.org/browse/MNG-1708
     Project: Maven 2
        Type: Improvement
  Components: maven-eclipse-plugin  
    Versions: 2.0    
    Reporter: Mark Donszelmann
     Fix For: 2.0.1


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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MNG-1708) eclipse:eclipse goal should handle includes and excludes of the maven-compiler-plugin

Posted by "Olivier Berlanger (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-1708?page=comments#action_52513 ] 

Olivier Berlanger commented on MNG-1708:
----------------------------------------

It's also useful to be able to specify direclty  an exclude pattern for the plugin.
We have currntly problems with subversion directories (**/.svn/) which are correctly ignored (by default) by compilers but causes nasty warnings when eclipse manages resources.

> eclipse:eclipse goal should handle includes and excludes of the maven-compiler-plugin
> -------------------------------------------------------------------------------------
>
>          Key: MNG-1708
>          URL: http://jira.codehaus.org/browse/MNG-1708
>      Project: Maven 2
>         Type: Improvement
>   Components: maven-eclipse-plugin
>     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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


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

Posted by "fabrizio giustina (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MECLIPSE-48?page=all ]

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

    Version: 2.0

> 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: Bug

>     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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


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

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-1708?page=all ]

Brett Porter updated MNG-1708:
------------------------------

    Fix Version:     (was: 2.0.1)

> eclipse:eclipse goal should handle includes and excludes of the maven-compiler-plugin
> -------------------------------------------------------------------------------------
>
>          Key: MNG-1708
>          URL: http://jira.codehaus.org/browse/MNG-1708
>      Project: Maven 2
>         Type: Improvement
>   Components: maven-eclipse-plugin
>     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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org