You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by "Shane Witbeck (JIRA)" <ji...@apache.org> on 2008/02/29 17:24:51 UTC

[jira] Created: (BUILDR-51) Idea7x task breaks for projects with tests

Idea7x task breaks for projects with tests
------------------------------------------

                 Key: BUILDR-51
                 URL: https://issues.apache.org/jira/browse/BUILDR-51
             Project: Buildr
          Issue Type: Bug
          Components: IDE
    Affects Versions: 1.3
         Environment: Windows XP
            Reporter: Shane Witbeck
             Fix For: 1.3
         Attachments: fix_for_output-test_element.patch

I've attached a patch. 

The issue was that the Builder::XmlMarkup was breaking on a new xml element (output-test) introduced for IDEA version 7. Using alternate syntax for the element, the patch remedies this.

xml.output-test(:url=>"#{MODULE_DIR_URL}/#{relative[project.test.compile.target.to_s]}") if project.test.compile.target

becomes

xml.tag!("output-test", :url=>"#{MODULE_DIR_URL}/#{relative[project.test.compile.target.to_s]}") if project.test.compile.target

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


[jira] Updated: (BUILDR-51) Idea7x task breaks for projects with tests

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

Shane Witbeck updated BUILDR-51:
--------------------------------

    Attachment: fix_for_output-test_element.patch

> Idea7x task breaks for projects with tests
> ------------------------------------------
>
>                 Key: BUILDR-51
>                 URL: https://issues.apache.org/jira/browse/BUILDR-51
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3
>         Environment: Windows XP
>            Reporter: Shane Witbeck
>             Fix For: 1.3
>
>         Attachments: fix_for_output-test_element.patch
>
>
> I've attached a patch. 
> The issue was that the Builder::XmlMarkup was breaking on a new xml element (output-test) introduced for IDEA version 7. Using alternate syntax for the element, the patch remedies this.
> xml.output-test(:url=>"#{MODULE_DIR_URL}/#{relative[project.test.compile.target.to_s]}") if project.test.compile.target
> becomes
> xml.tag!("output-test", :url=>"#{MODULE_DIR_URL}/#{relative[project.test.compile.target.to_s]}") if project.test.compile.target

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


[jira] Resolved: (BUILDR-51) Idea7x task breaks for projects with tests

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

Assaf Arkin resolved BUILDR-51.
-------------------------------

    Resolution: Fixed

> Idea7x task breaks for projects with tests
> ------------------------------------------
>
>                 Key: BUILDR-51
>                 URL: https://issues.apache.org/jira/browse/BUILDR-51
>             Project: Buildr
>          Issue Type: Bug
>          Components: IDE
>    Affects Versions: 1.3
>         Environment: Windows XP
>            Reporter: Shane Witbeck
>             Fix For: 1.3
>
>         Attachments: fix_for_output-test_element.patch
>
>
> I've attached a patch. 
> The issue was that the Builder::XmlMarkup was breaking on a new xml element (output-test) introduced for IDEA version 7. Using alternate syntax for the element, the patch remedies this.
> xml.output-test(:url=>"#{MODULE_DIR_URL}/#{relative[project.test.compile.target.to_s]}") if project.test.compile.target
> becomes
> xml.tag!("output-test", :url=>"#{MODULE_DIR_URL}/#{relative[project.test.compile.target.to_s]}") if project.test.compile.target

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