You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Gianmarco De Francisci Morales (JIRA)" <ji...@apache.org> on 2011/05/02 13:49:03 UTC

[jira] [Created] (PIG-2024) Incorrect jar paths in .classpath template for eclipse

Incorrect jar paths in .classpath template for eclipse
------------------------------------------------------

                 Key: PIG-2024
                 URL: https://issues.apache.org/jira/browse/PIG-2024
             Project: Pig
          Issue Type: Bug
            Reporter: Gianmarco De Francisci Morales
            Assignee: Gianmarco De Francisci Morales
            Priority: Minor
         Attachments: PIG-2024.patch

The jars listed in .eclipse.templates/.classpath are outdated.
Importing the project in eclipse after using ant eclipse-files generates build path errors.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PIG-2024) Incorrect jar paths in .classpath template for eclipse

Posted by "Gianmarco De Francisci Morales (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIG-2024?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gianmarco De Francisci Morales updated PIG-2024:
------------------------------------------------

    Status: Patch Available  (was: Open)

> Incorrect jar paths in .classpath template for eclipse
> ------------------------------------------------------
>
>                 Key: PIG-2024
>                 URL: https://issues.apache.org/jira/browse/PIG-2024
>             Project: Pig
>          Issue Type: Bug
>            Reporter: Gianmarco De Francisci Morales
>            Assignee: Gianmarco De Francisci Morales
>            Priority: Minor
>         Attachments: PIG-2024.patch
>
>
> The jars listed in .eclipse.templates/.classpath are outdated.
> Importing the project in eclipse after using ant eclipse-files generates build path errors.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PIG-2024) Incorrect jar paths in .classpath template for eclipse

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

Ashutosh Chauhan updated PIG-2024:
----------------------------------

       Resolution: Fixed
    Fix Version/s: 0.10
           Status: Resolved  (was: Patch Available)

Great. I will take a look at that one. 
Patch committed. Thanks, Gianmarco!

> Incorrect jar paths in .classpath template for eclipse
> ------------------------------------------------------
>
>                 Key: PIG-2024
>                 URL: https://issues.apache.org/jira/browse/PIG-2024
>             Project: Pig
>          Issue Type: Bug
>            Reporter: Gianmarco De Francisci Morales
>            Assignee: Gianmarco De Francisci Morales
>            Priority: Minor
>             Fix For: 0.10
>
>         Attachments: PIG-2024.patch
>
>
> The jars listed in .eclipse.templates/.classpath are outdated.
> Importing the project in eclipse after using ant eclipse-files generates build path errors.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PIG-2024) Incorrect jar paths in .classpath template for eclipse

Posted by "Gianmarco De Francisci Morales (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIG-2024?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gianmarco De Francisci Morales updated PIG-2024:
------------------------------------------------

    Attachment: PIG-2024.patch

> Incorrect jar paths in .classpath template for eclipse
> ------------------------------------------------------
>
>                 Key: PIG-2024
>                 URL: https://issues.apache.org/jira/browse/PIG-2024
>             Project: Pig
>          Issue Type: Bug
>            Reporter: Gianmarco De Francisci Morales
>            Assignee: Gianmarco De Francisci Morales
>            Priority: Minor
>         Attachments: PIG-2024.patch
>
>
> The jars listed in .eclipse.templates/.classpath are outdated.
> Importing the project in eclipse after using ant eclipse-files generates build path errors.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (PIG-2024) Incorrect jar paths in .classpath template for eclipse

Posted by "Ashutosh Chauhan (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIG-2024?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13029481#comment-13029481 ] 

Ashutosh Chauhan commented on PIG-2024:
---------------------------------------

Patch looks good. To make Pig more eclipse friendly, we need to tweak .classpath further to accomodate recently introduced e2e test folder. Something of the effect of the following:
{code}
-<classpathentry kind="src" path="test"/>
+<classpathentry excluding="e2e/|e2e/pig/udfs/java/|e2e/pig/udfs/java/" including="**" kind="src" path="test"/>
+<classpathentry kind="src" path="test/e2e/pig/udfs/java"/>
{code}
Gianmarco, Can you roll this in your patch.


> Incorrect jar paths in .classpath template for eclipse
> ------------------------------------------------------
>
>                 Key: PIG-2024
>                 URL: https://issues.apache.org/jira/browse/PIG-2024
>             Project: Pig
>          Issue Type: Bug
>            Reporter: Gianmarco De Francisci Morales
>            Assignee: Gianmarco De Francisci Morales
>            Priority: Minor
>         Attachments: PIG-2024.patch
>
>
> The jars listed in .eclipse.templates/.classpath are outdated.
> Importing the project in eclipse after using ant eclipse-files generates build path errors.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (PIG-2024) Incorrect jar paths in .classpath template for eclipse

Posted by "Gianmarco De Francisci Morales (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIG-2024?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13029484#comment-13029484 ] 

Gianmarco De Francisci Morales commented on PIG-2024:
-----------------------------------------------------

Hi Ashutosh,
I noticed the issue with e2e, and I had already opened a different jira for that, PIG-2026.
The patch there does exactly what you suggest.

> Incorrect jar paths in .classpath template for eclipse
> ------------------------------------------------------
>
>                 Key: PIG-2024
>                 URL: https://issues.apache.org/jira/browse/PIG-2024
>             Project: Pig
>          Issue Type: Bug
>            Reporter: Gianmarco De Francisci Morales
>            Assignee: Gianmarco De Francisci Morales
>            Priority: Minor
>         Attachments: PIG-2024.patch
>
>
> The jars listed in .eclipse.templates/.classpath are outdated.
> Importing the project in eclipse after using ant eclipse-files generates build path errors.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira