You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by "Anders Asplund (JIRA)" <ji...@apache.org> on 2008/10/10 10:11:44 UTC

[jira] Created: (BUILDR-169) Wrong classpath is set when running buildr eclipse

Wrong classpath is set when running buildr eclipse
--------------------------------------------------

                 Key: BUILDR-169
                 URL: https://issues.apache.org/jira/browse/BUILDR-169
             Project: Buildr
          Issue Type: Bug
          Components: IDE
    Affects Versions: 1.3.3
         Environment: All OS
Ruby, JRuby
Eclipse Ganymede(3.4)
            Reporter: Anders Asplund


http://n2.nabble.com/buildr-eclipse---bug--td1315442.html


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


[jira] Updated: (BUILDR-169) Wrong classpath is set when running buildr eclipse

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

Alex Boisvert updated BUILDR-169:
---------------------------------

    Attachment: eclipse.rb

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>         Attachments: buildr-bug.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Commented: (BUILDR-169) Wrong classpath is set when running buildr eclipse

Posted by "Anders Asplund (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/BUILDR-169?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12638961#action_12638961 ] 

Anders Asplund commented on BUILDR-169:
---------------------------------------

Hi,

Ok, no I see... that makes it a bit clearer. But still there is a small problem with this. Maybe no a bug but more of a feature character. If I, as in my case, wants to apply buildr on an already existing project this will cause a failure initially. I will try to explain:

If you have an already existing project including two separate projects where foo-impl depends on foo-api. The name of the projects are by default in eclipse the same as the folder name in the file system path. When you later try to apply buildr on this project you want add these two project in to a parent (called buildr-bug) so that they can reference each other. After running buildr eclipse the symbolic project name will change to <parent project name>-<child project name>, in my example buildr-bug-foo-api and buildr-bug-foo-impl. The foo-impl project will therefore reference the foo-api project with the symbolic name, buildr-bug-foo-api. This is where it goes wrong. The project name in eclipse wont update to the new symbolic name and the project references will fail since eclipse will not find any buildr-bug-foo-api project.

To work arond this I had to remove the projects from eclispse and import them again. This will forece eclipse to reload the project with their new names.

I'll upload a new example project for you to try out including a buildfile. The project is setup as a non-buildr project and the buildfile should be run to on this non-buildr project to "convert" it to a buildr-project.

I will also attach two screendumps showing the Java Build Path before and after running buildr eclipse.

//Anders

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: buildr-bug.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Commented: (BUILDR-169) Wrong classpath is set when running buildr eclipse

Posted by "lacton (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/BUILDR-169?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12638735#action_12638735 ] 

lacton commented on BUILDR-169:
-------------------------------

When I run "buildr eclipse", I do not get the same result as you.

Your foo-impl/.classpath in buildr-bug.tar.gz contains

<?xml version="1.0" encoding="UTF-8"?>
<classpath>
        <classpathentry excluding="**/.svn/|**/CVS/" kind="src" path="src/main/java"/>
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
        <classpathentry combineaccessrules="false" kind="src" path="/foo-api"/>
        <classpathentry kind="output" path="target/classes"/>
</classpath>

whereas the foo-impl/.classpath I get when I run "touch buildfile ; buildr eclipse" contains

<classpath>
  <classpathentry path="src/main/java" kind="src" excluding="**/.svn/|**/CVS/"/>
  <classpathentry path="/buildr-bug-foo-api" kind="src" combineaccessrules="false"/>
  <classpathentry path="target/classes" kind="output"/>
  <classpathentry path="org.eclipse.jdt.launching.JRE_CONTAINER" kind="con"/>
</classpath>

How did you generate your .classpath files?

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>         Attachments: buildr-bug.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Updated: (BUILDR-169) Wrong classpath is set when running buildr eclipse

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

Anders Asplund updated BUILDR-169:
----------------------------------

    Attachment: After buildr eclipse.png

A non-buildr project in eclipse.

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: After buildr eclipse.png, buildr-bug.tar.gz, buildr-bug2.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Commented: (BUILDR-169) Wrong classpath is set when running buildr eclipse

Posted by "lacton (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/BUILDR-169?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12638736#action_12638736 ] 

lacton commented on BUILDR-169:
-------------------------------

When I try to import the 'buildr-bug' project in Eclipse 3.3.2, I get a build error.

After running "touch buildfile ; buildr eclipse", it imports fine.


> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>         Attachments: buildr-bug.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Commented: (BUILDR-169) Wrong classpath is set when running buildr eclipse

Posted by "lacton (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/BUILDR-169?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12638920#action_12638920 ] 

lacton commented on BUILDR-169:
-------------------------------

Anders,

> it points at the buildr-bug-foo-api project. The problem is that there is no such project. The name of the project is only foo-api and it resides in a folder with the same name.

I think you are mixing up the project name and the project directory.

If you look at 'foo-api/.project', you will see that the project name is indeed "<name>buildr-bug-foo-api</name>".

The <classpathentry path="/buildr-bug-foo-api"> item looks like a real file system path, but it is just a symbolic project name.

See for instance http://dev.eclipse.org/newslists/news.eclipse.tools.jdt/msg06668.html

> I do get the same result as you - and thats my issue!

Here is what I do with Eclipse 3.3.2.
#1. File / Import
#2. General / Existing Projects into Workspace
#3. Next
#4. Select root directory:
#5. Browse to buildr-bug folder and click OK.
#6. In the "Projects" panel, I see buildr-bug-foo-api and buildr-bug-foo-impl.  Both are ticked.
#7. Finish
#8. Now, both projects are open and I have no build problems.


> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: buildr-bug.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Commented: (BUILDR-169) Wrong classpath is set when running buildr eclipse

Posted by "Anders Asplund (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/BUILDR-169?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12638878#action_12638878 ] 

Anders Asplund commented on BUILDR-169:
---------------------------------------

Hi,

Sorry if I wasn't clear enough in my comments, but the problem is excatly what you describe. If you take a look att the classpath for the related project <classpathentry path="/buildr-bug-foo-api"... it points at the buildr-bug-foo-api project. The problem is that there is no such project. The name of the project is only foo-api and it resides in a folder with the same name. If you open the classpath dialog in eclipse it points to a project with the name /buildr-bug-foo-api but no such folder exists and it will generate an error.

If you need more info about this I'll send you some screendumps over tomorrow.


The project I sent you contained that classpath because I changed it in eclipse. I do get the same result as you - and thats my issue!


//Anders

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: buildr-bug.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Updated: (BUILDR-169) Wrong classpath is set when running buildr eclipse

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

Anders Asplund updated BUILDR-169:
----------------------------------

    Attachment: After_buildr_eclipse.jpg

Java Build Path after running buildr eclipse on an eclipse project.

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: buildr-bug.tar.gz, buildr-bug2.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Commented: (BUILDR-169) Wrong classpath is set when running buildr eclipse

Posted by "lacton (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/BUILDR-169?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12639171#action_12639171 ] 

lacton commented on BUILDR-169:
-------------------------------

Anders,

Thank you for your explanations.  I had not thought about this kind of setting.

It is true that if you already have some of the projects in your Eclipse workspace with the Eclipse default names, the Eclipse build will fail because of the name mismatch.  Deleting them from the Eclipse workspace and importing them again would be the way to go.

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: After buildr eclipse.png, Before buildr eclipes.png, buildr-bug.tar.gz, buildr-bug2.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Updated: (BUILDR-169) Wrong classpath is set when running buildr eclipse

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

Alex Boisvert updated BUILDR-169:
---------------------------------

    Attachment: buildr-bug.tar.gz

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>         Attachments: buildr-bug.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Updated: (BUILDR-169) Wrong classpath is set when running buildr eclipse

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

Anders Asplund updated BUILDR-169:
----------------------------------

    Comment: was deleted

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: After buildr eclipse.png, Before buildr eclipes.png, buildr-bug.tar.gz, buildr-bug2.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Updated: (BUILDR-169) Wrong classpath is set when running buildr eclipse

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

Anders Asplund updated BUILDR-169:
----------------------------------

    Attachment: Before buildr eclipes.png

A non-buildr project in eclipse.

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: After buildr eclipse.png, Before buildr eclipes.png, buildr-bug.tar.gz, buildr-bug2.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Resolved: (BUILDR-169) Wrong classpath is set when running buildr eclipse

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

Alex Boisvert resolved BUILDR-169.
----------------------------------

       Resolution: Cannot Reproduce
    Fix Version/s: 1.3.3

I can't reproduce either so I have to assume this is fixed in 1.3.3.

I've verified we have a test that covers this and added an extra one to make sure the project reference matches the name in the .project file.

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: buildr-bug.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Updated: (BUILDR-169) Wrong classpath is set when running buildr eclipse

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

Anders Asplund updated BUILDR-169:
----------------------------------

    Attachment: After buildr eclipse.png

After running buildr-eclipse on the project.

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: After buildr eclipse.png, Before buildr eclipes.png, buildr-bug.tar.gz, buildr-bug2.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Updated: (BUILDR-169) Wrong classpath is set when running buildr eclipse

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

Anders Asplund updated BUILDR-169:
----------------------------------

    Attachment:     (was: After_buildr_eclipse.jpg)

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: After buildr eclipse.png, buildr-bug.tar.gz, buildr-bug2.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Updated: (BUILDR-169) Wrong classpath is set when running buildr eclipse

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

Anders Asplund updated BUILDR-169:
----------------------------------

    Attachment: buildr-bug2.tar.gz

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: buildr-bug.tar.gz, buildr-bug2.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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


[jira] Updated: (BUILDR-169) Wrong classpath is set when running buildr eclipse

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

Anders Asplund updated BUILDR-169:
----------------------------------

    Attachment:     (was: After buildr eclipse.png)

> Wrong classpath is set when running buildr eclipse
> --------------------------------------------------
>
>                 Key: BUILDR-169
>                 URL: https://issues.apache.org/jira/browse/BUILDR-169
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3.3
>         Environment: All OS
> Ruby, JRuby
> Eclipse Ganymede(3.4)
>            Reporter: Anders Asplund
>             Fix For: 1.3.3
>
>         Attachments: After buildr eclipse.png, Before buildr eclipes.png, buildr-bug.tar.gz, buildr-bug2.tar.gz, eclipse.rb
>
>
> http://n2.nabble.com/buildr-eclipse---bug--td1315442.html

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