You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexei Fedotov (JIRA)" <ji...@apache.org> on 2007/12/24 22:06:43 UTC

[jira] Created: (HARMONY-5340) [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse

[classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse
--------------------------------------------------------------------------------------------

                 Key: HARMONY-5340
                 URL: https://issues.apache.org/jira/browse/HARMONY-5340
             Project: Harmony
          Issue Type: Bug
            Reporter: Alexei Fedotov


The class library build breaks if one uses modules/ as an Eclipse workspace root which is a general development scenario.

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


[jira] Closed: (HARMONY-5340) [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse

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

Alexei Fedotov closed HARMONY-5340.
-----------------------------------


Thanks, fixed.

> [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse
> --------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-5340
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5340
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Alexei Fedotov
>            Assignee: Mark Hindess
>         Attachments: properties.patch
>
>
> The class library build breaks if one uses modules/ as an Eclipse workspace root which is a general development scenario.

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


[jira] Assigned: (HARMONY-5340) [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse

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

Mark Hindess reassigned HARMONY-5340:
-------------------------------------

    Assignee: Mark Hindess

> [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse
> --------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-5340
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5340
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Alexei Fedotov
>            Assignee: Mark Hindess
>         Attachments: properties.patch
>
>
> The class library build breaks if one uses modules/ as an Eclipse workspace root which is a general development scenario.

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


[jira] Resolved: (HARMONY-5340) [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse

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

Mark Hindess resolved HARMONY-5340.
-----------------------------------

    Resolution: Fixed

Fixed in r611544.  Alexei, please verify that my change resolves this problem for you.


> [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse
> --------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-5340
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5340
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Alexei Fedotov
>            Assignee: Mark Hindess
>         Attachments: properties.patch
>
>
> The class library build breaks if one uses modules/ as an Eclipse workspace root which is a general development scenario.

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


[jira] Updated: (HARMONY-5340) [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse

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

Alexei Fedotov updated HARMONY-5340:
------------------------------------

    Attachment: properties.patch

The patch puts hidden directories into the exclude list.

> [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse
> --------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-5340
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5340
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Alexei Fedotov
>         Attachments: properties.patch
>
>
> The class library build breaks if one uses modules/ as an Eclipse workspace root which is a general development scenario.

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


[jira] Commented: (HARMONY-5340) [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse

Posted by "Mark Hindess (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-5340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12558354#action_12558354 ] 

Mark Hindess commented on HARMONY-5340:
---------------------------------------

This is worth fixing but your patch abuses an existing variable and thus breaks the exclude.module behaviour.  That is,

   ant -Dexclude.module=awt,swing test

wont work any more and users would need to do:

   ant -Dexclude.module=awt,swing,.\* test

I'll check in a fix that doesn't break this api shortly.


> [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse
> --------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-5340
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5340
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Alexei Fedotov
>            Assignee: Mark Hindess
>         Attachments: properties.patch
>
>
> The class library build breaks if one uses modules/ as an Eclipse workspace root which is a general development scenario.

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


[jira] Commented: (HARMONY-5340) [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse

Posted by "Alexei Fedotov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-5340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12560335#action_12560335 ] 

Alexei Fedotov commented on HARMONY-5340:
-----------------------------------------

Ooops, should be "verified".

> [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse
> --------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-5340
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5340
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Alexei Fedotov
>            Assignee: Mark Hindess
>         Attachments: properties.patch
>
>
> The class library build breaks if one uses modules/ as an Eclipse workspace root which is a general development scenario.

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


[jira] Commented: (HARMONY-5340) [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse

Posted by "Alexei Fedotov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-5340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12560201#action_12560201 ] 

Alexei Fedotov commented on HARMONY-5340:
-----------------------------------------

I'm sorry, I didn't thought that exclude.module is an external interface for this use case. Thanks for fixing it directly!

> [classlib][build] make classlib build ignore modules/.metadata/ directory created by Eclipse
> --------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-5340
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5340
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Alexei Fedotov
>            Assignee: Mark Hindess
>         Attachments: properties.patch
>
>
> The class library build breaks if one uses modules/ as an Eclipse workspace root which is a general development scenario.

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