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.