You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Forrest Xia (JIRA)" <ji...@apache.org> on 2010/03/30 10:14:27 UTC

[jira] Created: (GERONIMO-5215) Cannot generate eclipse project config files for geronimo-commands

Cannot generate eclipse project config files for geronimo-commands
------------------------------------------------------------------

                 Key: GERONIMO-5215
                 URL: https://issues.apache.org/jira/browse/GERONIMO-5215
             Project: Geronimo
          Issue Type: Bug
      Security Level: public (Regular issues)
          Components: buildsystem
    Affects Versions: 2.1.5
            Reporter: Forrest Xia
            Assignee: Forrest Xia
            Priority: Minor
             Fix For: 2.1.5


When executing mvn eclipse:eclipse against "framework/modules/geronimo-commands", an exception like this:
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Request to merge when 'filtering' is not identical. Original=resource src/main/resources: output=target/classes, include=[**/*], exclude=[**/*.java], test=false, filtering=false, merging with=resource src/main/resources: output=target/classes, include=[org/apache/geronimo/commands/version.properties], exclude=[**/*.java], test=false, filtering=true

Seems the maven eclipse plugin cannot merge two resource definitions correctly as following:
 <resources>
            <resource>
                <directory>${pom.basedir}/src/main/resources</directory>
                <includes>
                    <include>**/*</include>
                </includes>
            </resource>

            <resource>
                <directory>${pom.basedir}/src/main/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>org/apache/geronimo/commands/version.properties</include>
                </includes>
            </resource>
        </resources>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMO-5215) Cannot generate eclipse project config files for several modules

Posted by "Forrest Xia (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-5215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Forrest Xia updated GERONIMO-5215:
----------------------------------

    Attachment: GERONIMO-5215_2.patch

patch 2 is for plugins/tomcat/tomcat6/pom.xml

> Cannot generate eclipse project config files for several modules
> ----------------------------------------------------------------
>
>                 Key: GERONIMO-5215
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-5215
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.1.5
>            Reporter: Forrest Xia
>            Assignee: Forrest Xia
>            Priority: Minor
>             Fix For: 2.1.5
>
>         Attachments: GERONIMO-5215.patch, GERONIMO-5215_2.patch
>
>
> When executing mvn eclipse:eclipse against "framework/modules/geronimo-commands", an exception like this:
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Request to merge when 'filtering' is not identical. Original=resource src/main/resources: output=target/classes, include=[**/*], exclude=[**/*.java], test=false, filtering=false, merging with=resource src/main/resources: output=target/classes, include=[org/apache/geronimo/commands/version.properties], exclude=[**/*.java], test=false, filtering=true
> Seems the maven eclipse plugin cannot merge two resource definitions correctly as following:
>  <resources>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <includes>
>                     <include>**/*</include>
>                 </includes>
>             </resource>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <filtering>true</filtering>
>                 <includes>
>                     <include>org/apache/geronimo/commands/version.properties</include>
>                 </includes>
>             </resource>
>         </resources>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Reopened: (GERONIMO-5215) Cannot generate eclipse project config files for geronimo-commands

Posted by "Forrest Xia (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-5215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Forrest Xia reopened GERONIMO-5215:
-----------------------------------


Found more modules have similar problem, so reopen this jira.

> Cannot generate eclipse project config files for geronimo-commands
> ------------------------------------------------------------------
>
>                 Key: GERONIMO-5215
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-5215
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.1.5
>            Reporter: Forrest Xia
>            Assignee: Forrest Xia
>            Priority: Minor
>             Fix For: 2.1.5
>
>         Attachments: GERONIMO-5215.patch
>
>
> When executing mvn eclipse:eclipse against "framework/modules/geronimo-commands", an exception like this:
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Request to merge when 'filtering' is not identical. Original=resource src/main/resources: output=target/classes, include=[**/*], exclude=[**/*.java], test=false, filtering=false, merging with=resource src/main/resources: output=target/classes, include=[org/apache/geronimo/commands/version.properties], exclude=[**/*.java], test=false, filtering=true
> Seems the maven eclipse plugin cannot merge two resource definitions correctly as following:
>  <resources>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <includes>
>                     <include>**/*</include>
>                 </includes>
>             </resource>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <filtering>true</filtering>
>                 <includes>
>                     <include>org/apache/geronimo/commands/version.properties</include>
>                 </includes>
>             </resource>
>         </resources>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (GERONIMO-5215) Cannot generate eclipse project config files for several modules

Posted by "Forrest Xia (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-5215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Forrest Xia closed GERONIMO-5215.
---------------------------------

    Resolution: Fixed

> Cannot generate eclipse project config files for several modules
> ----------------------------------------------------------------
>
>                 Key: GERONIMO-5215
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-5215
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.1.5
>            Reporter: Forrest Xia
>            Assignee: Forrest Xia
>            Priority: Minor
>             Fix For: 2.1.5
>
>         Attachments: GERONIMO-5215.patch, GERONIMO-5215_2.patch
>
>
> When executing mvn eclipse:eclipse against "framework/modules/geronimo-commands", an exception like this:
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Request to merge when 'filtering' is not identical. Original=resource src/main/resources: output=target/classes, include=[**/*], exclude=[**/*.java], test=false, filtering=false, merging with=resource src/main/resources: output=target/classes, include=[org/apache/geronimo/commands/version.properties], exclude=[**/*.java], test=false, filtering=true
> Seems the maven eclipse plugin cannot merge two resource definitions correctly as following:
>  <resources>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <includes>
>                     <include>**/*</include>
>                 </includes>
>             </resource>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <filtering>true</filtering>
>                 <includes>
>                     <include>org/apache/geronimo/commands/version.properties</include>
>                 </includes>
>             </resource>
>         </resources>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMO-5215) Cannot generate eclipse project config files for several modules

Posted by "Forrest Xia (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-5215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Forrest Xia updated GERONIMO-5215:
----------------------------------

    Summary: Cannot generate eclipse project config files for several modules  (was: Cannot generate eclipse project config files for geronimo-commands)

Update the title, since it's for several modules with the same issue when executing mvn eclipse:eclipse

> Cannot generate eclipse project config files for several modules
> ----------------------------------------------------------------
>
>                 Key: GERONIMO-5215
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-5215
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.1.5
>            Reporter: Forrest Xia
>            Assignee: Forrest Xia
>            Priority: Minor
>             Fix For: 2.1.5
>
>         Attachments: GERONIMO-5215.patch
>
>
> When executing mvn eclipse:eclipse against "framework/modules/geronimo-commands", an exception like this:
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Request to merge when 'filtering' is not identical. Original=resource src/main/resources: output=target/classes, include=[**/*], exclude=[**/*.java], test=false, filtering=false, merging with=resource src/main/resources: output=target/classes, include=[org/apache/geronimo/commands/version.properties], exclude=[**/*.java], test=false, filtering=true
> Seems the maven eclipse plugin cannot merge two resource definitions correctly as following:
>  <resources>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <includes>
>                     <include>**/*</include>
>                 </includes>
>             </resource>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <filtering>true</filtering>
>                 <includes>
>                     <include>org/apache/geronimo/commands/version.properties</include>
>                 </includes>
>             </resource>
>         </resources>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMO-5215) Cannot generate eclipse project config files for several modules

Posted by "Forrest Xia (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMO-5215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12851328#action_12851328 ] 

Forrest Xia commented on GERONIMO-5215:
---------------------------------------

commit patch 2 at revision 929049.

> Cannot generate eclipse project config files for several modules
> ----------------------------------------------------------------
>
>                 Key: GERONIMO-5215
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-5215
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.1.5
>            Reporter: Forrest Xia
>            Assignee: Forrest Xia
>            Priority: Minor
>             Fix For: 2.1.5
>
>         Attachments: GERONIMO-5215.patch, GERONIMO-5215_2.patch
>
>
> When executing mvn eclipse:eclipse against "framework/modules/geronimo-commands", an exception like this:
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Request to merge when 'filtering' is not identical. Original=resource src/main/resources: output=target/classes, include=[**/*], exclude=[**/*.java], test=false, filtering=false, merging with=resource src/main/resources: output=target/classes, include=[org/apache/geronimo/commands/version.properties], exclude=[**/*.java], test=false, filtering=true
> Seems the maven eclipse plugin cannot merge two resource definitions correctly as following:
>  <resources>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <includes>
>                     <include>**/*</include>
>                 </includes>
>             </resource>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <filtering>true</filtering>
>                 <includes>
>                     <include>org/apache/geronimo/commands/version.properties</include>
>                 </includes>
>             </resource>
>         </resources>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMO-5215) Cannot generate eclipse project config files for geronimo-commands

Posted by "Forrest Xia (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-5215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Forrest Xia updated GERONIMO-5215:
----------------------------------

    Attachment: GERONIMO-5215.patch

This patch fix the mvn eclipse:eclipse issue.

> Cannot generate eclipse project config files for geronimo-commands
> ------------------------------------------------------------------
>
>                 Key: GERONIMO-5215
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-5215
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.1.5
>            Reporter: Forrest Xia
>            Assignee: Forrest Xia
>            Priority: Minor
>             Fix For: 2.1.5
>
>         Attachments: GERONIMO-5215.patch
>
>
> When executing mvn eclipse:eclipse against "framework/modules/geronimo-commands", an exception like this:
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Request to merge when 'filtering' is not identical. Original=resource src/main/resources: output=target/classes, include=[**/*], exclude=[**/*.java], test=false, filtering=false, merging with=resource src/main/resources: output=target/classes, include=[org/apache/geronimo/commands/version.properties], exclude=[**/*.java], test=false, filtering=true
> Seems the maven eclipse plugin cannot merge two resource definitions correctly as following:
>  <resources>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <includes>
>                     <include>**/*</include>
>                 </includes>
>             </resource>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <filtering>true</filtering>
>                 <includes>
>                     <include>org/apache/geronimo/commands/version.properties</include>
>                 </includes>
>             </resource>
>         </resources>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMO-5215) Cannot generate eclipse project config files for geronimo-commands

Posted by "Forrest Xia (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMO-5215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12851310#action_12851310 ] 

Forrest Xia commented on GERONIMO-5215:
---------------------------------------

commit this patch at revision 929037.

> Cannot generate eclipse project config files for geronimo-commands
> ------------------------------------------------------------------
>
>                 Key: GERONIMO-5215
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-5215
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.1.5
>            Reporter: Forrest Xia
>            Assignee: Forrest Xia
>            Priority: Minor
>             Fix For: 2.1.5
>
>         Attachments: GERONIMO-5215.patch
>
>
> When executing mvn eclipse:eclipse against "framework/modules/geronimo-commands", an exception like this:
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Request to merge when 'filtering' is not identical. Original=resource src/main/resources: output=target/classes, include=[**/*], exclude=[**/*.java], test=false, filtering=false, merging with=resource src/main/resources: output=target/classes, include=[org/apache/geronimo/commands/version.properties], exclude=[**/*.java], test=false, filtering=true
> Seems the maven eclipse plugin cannot merge two resource definitions correctly as following:
>  <resources>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <includes>
>                     <include>**/*</include>
>                 </includes>
>             </resource>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <filtering>true</filtering>
>                 <includes>
>                     <include>org/apache/geronimo/commands/version.properties</include>
>                 </includes>
>             </resource>
>         </resources>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (GERONIMO-5215) Cannot generate eclipse project config files for geronimo-commands

Posted by "Forrest Xia (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-5215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Forrest Xia closed GERONIMO-5215.
---------------------------------

    Resolution: Fixed

> Cannot generate eclipse project config files for geronimo-commands
> ------------------------------------------------------------------
>
>                 Key: GERONIMO-5215
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-5215
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.1.5
>            Reporter: Forrest Xia
>            Assignee: Forrest Xia
>            Priority: Minor
>             Fix For: 2.1.5
>
>         Attachments: GERONIMO-5215.patch
>
>
> When executing mvn eclipse:eclipse against "framework/modules/geronimo-commands", an exception like this:
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Request to merge when 'filtering' is not identical. Original=resource src/main/resources: output=target/classes, include=[**/*], exclude=[**/*.java], test=false, filtering=false, merging with=resource src/main/resources: output=target/classes, include=[org/apache/geronimo/commands/version.properties], exclude=[**/*.java], test=false, filtering=true
> Seems the maven eclipse plugin cannot merge two resource definitions correctly as following:
>  <resources>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <includes>
>                     <include>**/*</include>
>                 </includes>
>             </resource>
>             <resource>
>                 <directory>${pom.basedir}/src/main/resources</directory>
>                 <filtering>true</filtering>
>                 <includes>
>                     <include>org/apache/geronimo/commands/version.properties</include>
>                 </includes>
>             </resource>
>         </resources>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.