Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 360542

Summary: Exported Antenna buildfile works incorrectly
Product: [Tools] MTJ Reporter: megatron <bukkake>
Component: MTJ projectsAssignee: Project Inbox <dsdp.mtj-inbox>
Status: NEW --- QA Contact:
Severity: major    
Priority: P3    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows 7   
Whiteboard:

Description megatron CLA 2011-10-11 10:21:25 EDT
Build Identifier: 

After exporting to Antenna buildfile I have mtj-build.xml which is works wrong.
It doesn't copy src files so there's no files to compile. Looks like problem in custom-tasks\BuildFilesFilter task.
I've found sources of this task and changed creating dirs in createContainerDirectory method.
file.getParentFile().mkdir(); --> file.getParentFile().mkdirs();
This fix solves problem.

Reproducible: Always

Steps to Reproduce:
1. create helloworld and move midlet to 3 levels package. export to ant script
2. ant -f mtj-build.xml
3. see no files in 'classes' path.